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

TEST_CASE("Constructor initialize test 1", "[cache]")
{
  Cache *c = new Cache(1, nullptr, 4);
  delete c;
}