Skip to content

Commit

Permalink
require removed
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben1980 committed Mar 5, 2019
1 parent 9bfb860 commit 9ac38d4
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions solverTest/src/solverTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,17 +69,19 @@ TEST_CASE("Benchmarking euler", "[benchmark]") {
BENCHMARK("Benchmarking with 100 particles") {
particles = solver.solve(particles);
}
REQUIRE(true);

particles = particleBuilder.build(1000);
BENCHMARK("Benchmarking with 1000 particles") {
particles = solver.solve(particles);
}
REQUIRE(true);

particles = particleBuilder.build(10000);
BENCHMARK("Benchmarking with 10K particles") {
particles = solver.solve(particles);
}
REQUIRE(true);

particles = particleBuilder.build(100000);
BENCHMARK("Benchmarking with 100K particles") {
particles = solver.solve(particles);
}
}

0 comments on commit 9ac38d4

Please sign in to comment.