summaryrefslogtreecommitdiff
path: root/yapf/unittest/unittest.h
diff options
context:
space:
mode:
Diffstat (limited to 'yapf/unittest/unittest.h')
-rw-r--r--yapf/unittest/unittest.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/yapf/unittest/unittest.h b/yapf/unittest/unittest.h
deleted file mode 100644
index f448ea341..000000000
--- a/yapf/unittest/unittest.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/* $Id$ */
-
-#define UNITTEST
-
-extern int num_tests_failed;
-extern int num_tests_total;
-
-extern bool _dbg;
-#define DBG if(_dbg) printf
-
-
-#define CHECK_INT(case_num, val, should_be) \
-{ \
- if((val) != (should_be)) { \
- res |= (1 << case_num); \
- printf("\n****** ERROR in case %d: " #val " = %d (should be %d)!", case_num, (val), (should_be)); \
- } \
-}
-
-typedef int(*TESTPROC)(bool silent);
-
-//#undef FORCEINLINE
-//#define FORCEINLINE
-
-
-#if defined(_WIN32) || defined(_WIN64)
-# include <windows.h>
-#else
-#endif