/* * Copyright 2020, Andrew Lindesay * Distributed under the terms of the MIT License. */ #ifndef LRU_CACHE_TEST_H #define LRU_CACHE_TEST_H #include #include class LRUCacheTest : public CppUnit::TestCase { public: LRUCacheTest(); virtual ~LRUCacheTest(); void TestAddWithOverflow(); void TestAddWithOverflowWithGets(); void TestRemove(); static void AddTests(BTestSuite& suite); }; #endif // LRU_CACHE_TEST_H