test: add unit tests for Blackjack and TicTacToe

- Add xUnit test projects for both games
- Implement game flow tests for Blackjack
- Implement game flow tests for TicTacToe
- Rename namespaces and projects to follow `Game.*` convention
- Add documentation for testing games
This commit is contained in:
2026-07-20 16:41:10 +08:00
parent 7946f4bafd
commit b4661e714e
38 changed files with 578 additions and 34 deletions
+10
View File
@@ -0,0 +1,10 @@
Row,Col
0,0
0,1
0,2
1,0
1,1
1,2
2,0
2,1
2,2
1 Row Col
2 0 0
3 0 1
4 0 2
5 1 0
6 1 1
7 1 2
8 2 0
9 2 1
10 2 2