2017-01-20 00:20:31 +00:00
|
|
|
// © 2016 and later: Unicode, Inc. and others.
|
2016-06-15 18:58:17 +00:00
|
|
|
// License & terms of use: http://www.unicode.org/copyright.html
|
2004-04-06 18:12:57 +00:00
|
|
|
/*
|
2008-06-12 01:01:00 +00:00
|
|
|
**********************************************************************
|
2016-05-31 21:45:07 +00:00
|
|
|
* Copyright (C) 2004-2008, International Business Machines
|
|
|
|
* Corporation and others. All Rights Reserved.
|
2008-06-12 01:01:00 +00:00
|
|
|
**********************************************************************
|
|
|
|
* file name: iotest.h
|
2017-02-03 18:57:23 +00:00
|
|
|
* encoding: UTF-8
|
2008-06-12 01:01:00 +00:00
|
|
|
* tab size: 8 (not used)
|
|
|
|
* indentation:4
|
|
|
|
*
|
|
|
|
* created on: 2004apr06
|
|
|
|
* created by: George Rhoten
|
|
|
|
*/
|
2004-04-06 18:12:57 +00:00
|
|
|
|
|
|
|
#ifndef IOTEST_H
|
|
|
|
#define IOTEST_H 1
|
|
|
|
|
|
|
|
#include "unicode/utypes.h"
|
|
|
|
#include "unicode/ctest.h"
|
|
|
|
|
|
|
|
U_CFUNC void
|
|
|
|
addStringTest(TestNode** root);
|
|
|
|
|
|
|
|
U_CFUNC void
|
|
|
|
addFileTest(TestNode** root);
|
|
|
|
|
2005-06-23 07:10:52 +00:00
|
|
|
U_CFUNC void
|
|
|
|
addTranslitTest(TestNode** root);
|
|
|
|
|
2005-09-16 18:09:08 +00:00
|
|
|
U_CFUNC void
|
|
|
|
addStreamTests(TestNode** root);
|
|
|
|
|
2004-04-06 18:12:57 +00:00
|
|
|
U_CDECL_BEGIN
|
|
|
|
extern const UChar NEW_LINE[];
|
2004-05-28 23:49:27 +00:00
|
|
|
extern const char C_NEW_LINE[];
|
2008-06-12 01:01:00 +00:00
|
|
|
extern const char *STANDARD_TEST_FILE;
|
2004-04-06 18:12:57 +00:00
|
|
|
U_CDECL_END
|
|
|
|
|
|
|
|
#define STANDARD_TEST_NUM_RANGE 1000
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|