#include "dram.h" #include #include TEST_CASE("Constructor initialize test 1", "[dram]") { Dram *d = new Dram(1, 4); std::array expected = {0, 0, 0, 0}; std::array actual = d->view(0, 1)[0]; CHECK(expected == actual); delete d; }