Issue#56 Update readme

This commit is contained in:
Gergely Hegedus 2022-09-23 18:33:11 +03:00
parent 3617ab96ac
commit 0eb000137b

View file

@ -21,6 +21,7 @@ The application is separated into different modules each module is tested differ
- [core](#core) - [core](#core)
- [network](#networking) - [network](#networking)
- [mockserver](#mock-server) - [mockserver](#mock-server)
- [examplecase](#example-case)
#### Model #### Model
Self explanatory, contains all shared data classes (POJOs) and Exceptions used by the other modules. Self explanatory, contains all shared data classes (POJOs) and Exceptions used by the other modules.
@ -103,6 +104,10 @@ It contains a way to setup responses to requests in a unified way. Contains all
[JsonAssert](https://github.com/skyscreamer/JSONassert) is used to compare JSON models. [JsonAssert](https://github.com/skyscreamer/JSONassert) is used to compare JSON models.
[OkHttp-TLS](https://github.com/square/okhttp/tree/master/okhttp-tls) is used to have HTTPS requests on Android Tests. [OkHttp-TLS](https://github.com/square/okhttp/tree/master/okhttp-tls) is used to have HTTPS requests on Android Tests.
#### Example Case
This folder contains examples of specific cases such as NavController testing.
## Server ## Server
The actual server when running the application is [mockapi.io](https://www.mockapi.io/) so don't expect actual functionalities in the application. The actual server when running the application is [mockapi.io](https://www.mockapi.io/) so don't expect actual functionalities in the application.
@ -163,6 +168,7 @@ We will also see how to test a specific Activity (same concept can be applied to
Bonus: Bonus:
* Testing Compose UI: Open the [compose instruction set](./codekata/compose.instructionset.md) * Testing Compose UI: Open the [compose instruction set](./codekata/compose.instructionset.md)
* Testing First: Open the [test first instruction set](./codekata/testfirst.instructionset.md) To see how to start writing your test first.
#### Robolectric and Android Tests. #### Robolectric and Android Tests.
Open the [shared tests instruction set](./codekata/sharedtests.instructionset.md). Open the [shared tests instruction set](./codekata/sharedtests.instructionset.md).