From db158de830e4fd4ab20ef5d357e24147c7a9281d Mon Sep 17 00:00:00 2001 From: bd Date: Wed, 5 Mar 2025 14:17:45 -0500 Subject: constructors + method declarations for cache, dram, reponse, storage --- tests/cache.cc | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tests/cache.cc (limited to 'tests/cache.cc') diff --git a/tests/cache.cc b/tests/cache.cc new file mode 100644 index 0000000..df5004a --- /dev/null +++ b/tests/cache.cc @@ -0,0 +1,8 @@ +#include "cache.h" +#include + +TEST_CASE("Constructor initialize test 1", "[cache]") +{ + Cache *c = new Cache(1, nullptr, 4); + delete c; +} -- cgit v1.2.3