Skip to content

Commit

Permalink
增加:FUnLuaTestBase的析构函数
Browse files Browse the repository at this point in the history
  • Loading branch information
xuyanghuang-tencent committed Nov 23, 2021
1 parent 6058122 commit 639a451
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Plugins/UnLua/Source/UnLuaTestSuite/Public/UnLuaTestCommon.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ class FUnLuaTestDelayedCallbackLatentCommand : public IAutomationLatentCommand
struct UNLUATESTSUITE_API FUnLuaTestBase
{
public:
~FUnLuaTestBase()
{
}

virtual bool InstantTest() { return false; }

virtual bool SetUp();
Expand All @@ -71,7 +75,7 @@ struct UNLUATESTSUITE_API FUnLuaTestBase
virtual void TearDown();

virtual void SetTestRunner(FAutomationTestBase& AutomationTestInstance) { TestRunner = &AutomationTestInstance; }

protected:
FUnLuaTestBase() : L(nullptr), TestRunner(nullptr)
{
Expand Down

0 comments on commit 639a451

Please sign in to comment.