-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathJxCode.CoreLib.cpp
More file actions
53 lines (47 loc) · 970 Bytes
/
JxCode.CoreLib.cpp
File metadata and controls
53 lines (47 loc) · 970 Bytes
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
#include "CoreLib/CoreLib.h"
#include "CoreLib/DebugTool.hpp"
#include <array>
#include <iostream>
#include <string>
#include <cassert>
#include <CoreLib/UString.h>
using namespace std;
using namespace jxcorlib;
extern void TestOOP();
extern void TestProperty();
extern void TestString();
extern void TestEvents();
extern void TestReflection();
extern void TestJsonSerializer();
extern void TestDynCreateInst();
extern void TestFormater();
extern void TestFile();
extern void TestEnum();
extern void TestGuid();
extern void TestMath();
extern void TestPlatform();
extern void TestDelegate();
int main()
{
using namespace std;
TestOOP();
TestEnum();
TestProperty();
TestString();
TestDelegate();
TestEvents();
TestReflection();
TestJsonSerializer();
TestDynCreateInst();
TestFormater();
TestGuid();
TestMath();
#ifdef _WIN32
TestFile();
#endif
TestPlatform();
int a;
cin >> a;
return 0;
}