• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (C) 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
3 /*
4  **********************************************************************
5  *   Copyright (C) 2004-2008, International Business Machines
6  *   Corporation and others.  All Rights Reserved.
7  **********************************************************************
8  *   file name:  iotest.h
9  *   encoding:   US-ASCII
10  *   tab size:   8 (not used)
11  *   indentation:4
12  *
13  *   created on: 2004apr06
14  *   created by: George Rhoten
15  */
16 
17 #ifndef IOTEST_H
18 #define IOTEST_H 1
19 
20 #include "unicode/utypes.h"
21 #include "unicode/ctest.h"
22 
23 U_CFUNC void
24 addStringTest(TestNode** root);
25 
26 U_CFUNC void
27 addFileTest(TestNode** root);
28 
29 U_CFUNC void
30 addTranslitTest(TestNode** root);
31 
32 U_CFUNC void
33 addStreamTests(TestNode** root);
34 
35 U_CDECL_BEGIN
36 extern const UChar NEW_LINE[];
37 extern const char C_NEW_LINE[];
38 extern const char *STANDARD_TEST_FILE;
39 U_CDECL_END
40 
41 #define STANDARD_TEST_NUM_RANGE 1000
42 
43 
44 #endif
45