diff --git a/README.md b/README.md index d40fa9d..203e627 100644 --- a/README.md +++ b/README.md @@ -13,3 +13,8 @@ The `AddHit(int, int)` method resides in the `SG.CodeCoverage.Recorder` project, 2. When any method in the project is called, instrumented assemblies make sure that the `RecordingControllerServer` is running and collecting data, and then sends the hit records to the server. 3. After running each test, you can call `RecorderControllerClient.SaveHitsAndReset(string outputPath)`. This will send a request to server to save the visited types and methods as a binary file like `hits.test1.bin`, then resets the counter. 4. After collecting test hits, you can find the visited files by merging the `json` map file and the binary hit file. This can be easily done using `DataCollector.GetVisitedFiles` method which does this task. + +## Conclusion +This is not exactly a sequence diagram, but helps you get the idea: + +![summery](./summery.png) \ No newline at end of file diff --git a/summery.png b/summery.png new file mode 100644 index 0000000..ce9e16c Binary files /dev/null and b/summery.png differ