blob: a6a86ee1239715606b4278c41ca4fa7b73be303b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
// Copyright Epic Games, Inc. All Rights Reserved.
#include <zenbase/refcount.h>
#include <zencore/testing.h>
#include <functional>
namespace zen {
//////////////////////////////////////////////////////////////////////////
//
// Testing related code follows...
//
#if ZEN_WITH_TESTS
struct TestRefClass : public RefCounted
{
~TestRefClass()
{
if (OnDestroy)
OnDestroy();
}
using RefCounted::RefCount;
std::function<void()> OnDestroy;
};
void
refcount_forcelink()
{
}
TEST_CASE("RefPtr")
{
RefPtr<TestRefClass> Ref;
Ref = new TestRefClass;
bool IsDestroyed = false;
Ref->OnDestroy = [&] { IsDestroyed = true; };
CHECK(IsDestroyed == false);
CHECK(Ref->RefCount() == 1);
RefPtr<TestRefClass> Ref2;
Ref2 = Ref;
CHECK(IsDestroyed == false);
CHECK(Ref->RefCount() == 2);
RefPtr<TestRefClass> Ref3;
Ref2 = Ref3;
CHECK(IsDestroyed == false);
CHECK(Ref->RefCount() == 1);
Ref = Ref3;
CHECK(IsDestroyed == true);
}
#endif
} // namespace zen
|