Changes for page Testing Concurreny

Last modified by chrisby on 2023/11/30 21:29

From version 1.2
edited by chrisby
on 2023/11/28 20:19
Change comment: There is no comment for this version
To version 1.3
edited by chrisby
on 2023/11/30 20:02
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -6,10 +6,7 @@
6 6  
7 7  #### Solution Approaches
8 8  
9 -* Monte Carlo Testing
10 - * Write flexible, adaptive tests.
11 - * Run them repeatedly on a test server, randomly varying the test settings.
12 - * If something fails, the code is broken and the settings used should be logged.
9 +* **Monte Carlo Testing**: Write flexible, adaptive tests that can be executed with a variety of test settings, such as the number of threads used, types of operations, order of operations, and so on. Run these tests repeatedly on a test server, randomly varying the test settings. If something fails, then there is a problem with the code, and the settings used should be logged.
13 13  * Do this early to gain tests ASAP for your test repertoire or CI server. Run tests on each platform over time to either confirm the correctness of the production code or to uncover bugs in the test code.
14 14  * Run the tests on a single machine, simulating application loads whenever possible.
15 -* There are tools for testing thread-based code, such as ConTest.
12 +* There are tools for testing concurrent code, such as ConTest.