summaryrefslogtreecommitdiff
path: root/docs/testing-guide.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/testing-guide.md')
-rw-r--r--docs/testing-guide.md4
1 files changed, 1 insertions, 3 deletions
diff --git a/docs/testing-guide.md b/docs/testing-guide.md
index b40c1bb..a3a18d9 100644
--- a/docs/testing-guide.md
+++ b/docs/testing-guide.md
@@ -20,7 +20,7 @@ This runs tests for:
- Core components (`core/*Test.java`)
- Event system (`events/**/*Test.java`)
- Protocol abstractions (`protocols/VSAbstractProtocolTest.java`)
-- Specific protocols (PingPong, Raft)
+- Specific protocols (PingPong, TwoPhaseCommit)
### Protocol Simulation Tests
@@ -128,10 +128,8 @@ The project is configured to run only unit tests by default:
<include>**/events/**/*Test.java</include>
<include>**/protocols/VSAbstractProtocolTest.java</include>
<include>**/protocols/implementations/VSPingPongProtocolTest.java</include>
- <include>**/protocols/implementations/VSRaftProtocolTest.java</include>
</includes>
<excludes>
- <exclude>**/SimpleRaftGUITest.java</exclude>
<exclude>**/testing/**/*Test.java</exclude>
</excludes>
</configuration>