summaryrefslogtreecommitdiff
path: root/tests/dram.cc
blob: 1bde0fd85f7ed0a3c919da05fec1fd391aa901ff (plain)
1
2
3
4
5
6
7
8
#include "dram.h"
#include <catch2/catch_test_macros.hpp>

TEST_CASE("Constructor initialize test 1", "[dram]")
{
  Dram *d = new Dram(1, 4);
  delete d;
}