issue#14 Fix type of the instructionset

This commit is contained in:
Gergely Hegedus 2022-04-06 22:59:29 +03:00
parent aed9e6bd09
commit 6db460ad47
2 changed files with 2 additions and 2 deletions

View file

@ -162,7 +162,7 @@ In this tests we will also see how to interact with View components in tests via
We will also see how to test a specific Activity (same concept can be applied to fragments)
#### Robolectric and Android Tests.
Open the [shared tests instruction set](./codekata/sharedtests.instructionset).
Open the [shared tests instruction set](./codekata/sharedtests.instructionset.md).
In this section we will see how can we share Robolectric test source with AndroidTests to run our same tests on actual device.
We will also see how to write AndroidTest End to End Tests.

View file

@ -1,6 +1,6 @@
# 6. Starting of Shared tests and Android Tests
This is our last instructionset and it's all about testing on Real Android devices and on Emulators.
This is our last instruction set and it's all about testing on Real Android devices and on Emulators.
It's important for this section to finish the Robolectric testing, because we will continue from that.
In this testing instruction set you will learn how to write simple tests running on real devices and run the same tests via Robolectric.