Skip to content

Commit

Permalink
[SUTK] Followup for 64298f6
Browse files Browse the repository at this point in the history
  • Loading branch information
ravi688 committed Dec 29, 2024
1 parent bbf0581 commit d2090dc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sutk/source/ITest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
#include <sutk/tests/PanelTest.hpp>
#include <sutk/tests/LabelTest.hpp>
#include <sutk/tests/PassiveLabelTest.hpp>
#include <sutk/tests/DrawOrderTest.hpp>

namespace SUTK
{
Expand Down Expand Up @@ -65,7 +66,8 @@ namespace SUTK
{ "DARK_LIGHT_THEME", [] () { return std::unique_ptr<ITest>(new DarkLightThemeTest()); }},
{ "PANEL", [] () { return std::unique_ptr<ITest>(new PanelTest()); }},
{ "LABEL", [] () { return std::unique_ptr<ITest>(new LabelTest()); }},
{ "PASSIVE_LABEL", [] () { return std::unique_ptr<ITest>(new PassiveLabelTest()); }}
{ "PASSIVE_LABEL", [] () { return std::unique_ptr<ITest>(new PassiveLabelTest()); }},
{ "DRAW_ORDER", [] () { return std::unique_ptr<ITest>(new DrawOrderTest()); }}
};

std::unique_ptr<ITest> ITest::Create(const std::string& testName)
Expand Down

0 comments on commit d2090dc

Please sign in to comment.