summaryrefslogtreecommitdiffhomepage
path: root/public
diff options
context:
space:
mode:
Diffstat (limited to 'public')
-rw-r--r--public/frameworks/KernelTest.fwrk/headers/KernelTest.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/public/frameworks/KernelTest.fwrk/headers/KernelTest.h b/public/frameworks/KernelTest.fwrk/headers/KernelTest.h
index 30fb3ce6..966672bb 100644
--- a/public/frameworks/KernelTest.fwrk/headers/KernelTest.h
+++ b/public/frameworks/KernelTest.fwrk/headers/KernelTest.h
@@ -15,20 +15,20 @@
#define KT_TEST_SUCCESS (0)
-#define KT_DECL_TEST(NAME, FN) \
+#define KT_DECL_TEST(NAME, FN) \
class KT_##NAME final \
- { \
- public: \
- void Run(); \
- const char* ToString(); \
- }; \
- inline void KT_##NAME::Run() \
- { \
- MUST_PASS(FN() == true); \
- } \
+ { \
+ public: \
+ void Run(); \
+ const char* ToString(); \
+ }; \
+ inline void KT_##NAME::Run() \
+ { \
+ MUST_PASS(FN() == true); \
+ } \
inline const char* KT_##NAME::ToString() \
- { \
- return #FN; \
+ { \
+ return #FN; \
}
KT_DECL_TEST(ALWAYS_BREAK, []() -> bool { return false; });