11 lines
238 B
C++
11 lines
238 B
C++
|
#ifdef TESTS_BUILD
|
||
|
#include "../extern/doctest.hpp"
|
||
|
#include "../src/Memory/Memory.hpp"
|
||
|
using namespace ArbUt;
|
||
|
|
||
|
TEST_CASE("Scoped Pointer deletes child after out of scope") {
|
||
|
auto a = ScopedPtr<uint32_t>(new uint32_t(100));
|
||
|
}
|
||
|
|
||
|
|
||
|
#endif
|