You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -796,7 +798,10 @@ public async Task<IActionResult> ProposeMeetingGroup(ProposeMeetingGroupRequest
796
798
797
799
**Implementation**
798
800
799
-
Each unit test has 3 standard sections: Arrange, Act and Assert
801
+
Unit tests should mainly test business logic (domain model): </br>
802
+

803
+
804
+
Each unit test has 3 standard sections: Arrange, Act and Assert:
800
805
801
806

802
807
@@ -955,6 +960,97 @@ Using this kind of tests we can test proper layering of our application, depende
955
960
956
961
More information about architecture unit tests here: [https://blogs.oracle.com/javamagazine/unit-test-your-architecture-with-archunit](https://blogs.oracle.com/javamagazine/unit-test-your-architecture-with-archunit)
957
962
963
+
### 3.13 Integration Tests
964
+
965
+
#### Definition
966
+
967
+
"Integration Test" term is blurred. It can mean test between classes, modules, services, even systems - see [this](https://martinfowler.com/bliki/IntegrationTest.html) article (by Martin Fowler). </br>
968
+
969
+
For this reason, the definition of integration test in this project is as follows:</br>
970
+
- it verifies how system works in integration with "out-of-process" dependencies - database, messaging system, file system or external API
971
+
- it tests particular use case
972
+
- it can be slow (as opposed to Unit Test)
973
+
974
+
#### Approach
975
+
976
+
-**Do not mock dependencies over which you have full control** (like database). Full control dependency means you can always revert all changes (remove side-effects) and no one can notice it. They are not visible to others. See next point, please.
977
+
-**Use "production", normal, real database version**. Some use e.g. in memory repository, some use light databases instead "production" version. This is still mocking. Testing makes sense if we have full confidence in testing. You can't trust the test if you know that the infrastructure in the production environment will vary. Be always as close to production environment as possible.
978
+
-**Mock dependencies over which you don't have control**. No control dependency means you can't remove side-effects after interaction with this dependency (external API, messaging system, SMTP server etc.). They can be visible to others.
979
+
980
+
#### Implementation
981
+
982
+
Integration test should test exactly one use case. One use case is represented by one Command/Query processing so CommandHandler/QueryHandler in Application layer is perfect starting point for running the Integration Test:</br>
983
+
984
+

985
+
For each test, the following preparation steps must be performed:</br>
Each Command/Query processing is a separate execution (with different object graph resolution, context, database connection etc.) thanks to Composition Root of each module. This behavior is important and desirable.
958
1054
959
1055
## 4. Technology
960
1056
@@ -1034,6 +1130,7 @@ List of features/tasks/approaches to add:
@@ -1120,6 +1217,7 @@ The project is under [MIT license](https://opensource.org/licenses/MIT).
1120
1217
### Testing
1121
1218
-["The Art of Unit Testing: with examples in C#"](https://www.amazon.com/Art-Unit-Testing-examples/dp/1617290890) book, Roy Osherove
1122
1219
-["Unit Test Your Architecture with ArchUnit"](https://blogs.oracle.com/javamagazine/unit-test-your-architecture-with-archunit) article, Jonas Havers
1220
+
-["Unit Testing Principles, Practices, and Patterns"](https://www.amazon.com/Unit-Testing-Principles-Practices-Patterns/dp/1617296279) book, Vladimir Khorikov
1123
1221
1124
1222
### UML
1125
1223
-["UML Distilled: A Brief Guide to the Standard Object Modeling Language (3rd Edition)"](https://www.amazon.com/UML-Distilled-Standard-Modeling-Language/dp/0321193687) book, Martin Fowler
0 commit comments