Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions test/tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@ TEST_CASE_METHOD(CorrectnessTest, "move ctor") {
}
}

TEST_CASE_METHOD(PerformanceTest, "move ctor") {
TEST_CASE_METHOD(PerformanceTest, "move ctor performance") {
static constexpr int N = 8'000;

Vector<Vector<int>> a;
Expand Down Expand Up @@ -820,7 +820,7 @@ TEST_CASE_METHOD(CorrectnessTest, "self move assignment") {
}
}

TEST_CASE_METHOD(PerformanceTest, "move assignment") {
TEST_CASE_METHOD(PerformanceTest, "move assignment performance") {
static constexpr int N = 8'000;

Vector<Vector<int>> a;
Expand Down Expand Up @@ -930,7 +930,7 @@ TEST_CASE_METHOD(CorrectnessTest, "`insert` to end") {
}
}

TEST_CASE_METHOD(PerformanceTest, "`insert`") {
TEST_CASE_METHOD(PerformanceTest, "`insert` performance") {
static constexpr int N = 8'000;

Vector<Vector<int>> a;
Expand Down Expand Up @@ -1151,7 +1151,7 @@ TEST_CASE_METHOD(CorrectnessTest, "`erase` range all") {
CHECK(a.data() == old_data);
}

TEST_CASE_METHOD(PerformanceTest, "`erase`") {
TEST_CASE_METHOD(PerformanceTest, "`erase` performance") {
static constexpr int N = 8'000, M = 50'000, K = 100;

Vector<int> a;
Expand Down
Loading