Skip to content

Commit

Permalink
test formatting with clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan597 committed Dec 14, 2023
1 parent 1f49144 commit 8250c43
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions tests/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,19 +99,7 @@ TEST_CASE("Board print", "[board]") {
REQUIRE(expected_output == ss.str());
}

TEST_CASE("Board move", "[board, piece]") {
Board chessboard{};
chessboard.move("d4");
chessboard.move("e5");
chessboard.move("dxe5");
chessboard.move("Nc6");
chessboard.move("Nf3");
chessboard.move("d4");
chessboard.move("d4");
chessboard.move("d4");
}

TEST_CASE("Print Position from FEN", "[board, fen]") {
TEST_CASE("Print Position from FEN", "[board],[fen]") {
std::stringstream ss;
// redirect cout to stringstream, save old buffer
auto old_buf = std::cout.rdbuf(ss.rdbuf());
Expand Down

0 comments on commit 8250c43

Please sign in to comment.