Skip to content

Commit

Permalink
Deleted unuselless MemoryTest setup and turndown
Browse files Browse the repository at this point in the history
  • Loading branch information
root authored and root committed Oct 20, 2024
1 parent caa28af commit 9c62609
Showing 1 changed file with 1 addition and 14 deletions.
15 changes: 1 addition & 14 deletions test/function/memory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,7 @@

namespace {

class MemoryTest : public ::testing::Test {
protected:
void SetUp() override {
stumpless_set_malloc(nullptr);
stumpless_set_free(nullptr);
stumpless_set_realloc(nullptr);
}

void TearDown() override {
stumpless_set_malloc(nullptr);
stumpless_set_free(nullptr);
stumpless_set_realloc(nullptr);
}
};
class MemoryTest : public ::testing::Test {};

TEST( FreeAllTest, SimpleCall ) {
stumpless_free_all( );
Expand Down

0 comments on commit 9c62609

Please sign in to comment.