We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8169a86 commit ca10f97Copy full SHA for ca10f97
1 file changed
tests/test.cpp
@@ -99,19 +99,7 @@ TEST_CASE("Board print", "[board]") {
99
REQUIRE(expected_output == ss.str());
100
}
101
102
-TEST_CASE("Board move", "[board, piece]") {
103
- Board chessboard{};
104
- chessboard.move("d4");
105
- chessboard.move("e5");
106
- chessboard.move("dxe5");
107
- chessboard.move("Nc6");
108
- chessboard.move("Nf3");
109
110
111
112
-}
113
-
114
-TEST_CASE("Print Position from FEN", "[board, fen]") {
+TEST_CASE("Print Position from FEN", "[board],[fen]") {
115
std::stringstream ss;
116
// redirect cout to stringstream, save old buffer
117
auto old_buf = std::cout.rdbuf(ss.rdbuf());
0 commit comments