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/dram.cc | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tests/dram.cc (limited to 'tests/dram.cc') diff --git a/tests/dram.cc b/tests/dram.cc new file mode 100644 index 0000000..1bde0fd --- /dev/null +++ b/tests/dram.cc @@ -0,0 +1,8 @@ +#include "dram.h" +#include + +TEST_CASE("Constructor initialize test 1", "[dram]") +{ + Dram *d = new Dram(1, 4); + delete d; +} -- cgit v1.2.3