forked from lc-soft/LCUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.c
38 lines (35 loc) · 777 Bytes
/
test.c
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
#include <stdio.h>
#include <wchar.h>
#include <LCUI_Build.h>
#include <LCUI/LCUI.h>
#include "test.h"
#ifdef LCUI_BUILD_IN_WIN32
static void LoggerHandler( const char *str )
{
OutputDebugStringA( str );
}
static void LoggerHandlerW( const wchar_t *str )
{
OutputDebugStringW( str );
}
#endif
int main( void )
{
int ret = 0;
#ifdef LCUI_BUILD_IN_WIN32
Logger_SetHandler( LoggerHandler );
Logger_SetHandlerW( LoggerHandlerW );
#endif
ret += test_string();
ret += test_thread();
ret += test_font_load();
ret += test_image_reader();
ret += test_css_parser();
ret += test_xml_parser();
ret += test_widget_layout();
ret += test_widget_flex_layout();
ret += test_widget_inline_block_layout();
ret += test_widget_rect();
PRINT_TEST_RESULT( ret );
return ret;
}