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
|
2007-06-22 03:57:45 +00:00
|
|
|
/*
|
|
|
|
*
|
2016-05-31 21:45:07 +00:00
|
|
|
* (C) Copyright IBM Corp. 1998-2014 - All Rights Reserved
|
2007-06-22 03:57:45 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __XMLREADER_H
|
|
|
|
#define __XMLREADER_H
|
|
|
|
|
2014-09-10 02:20:50 +00:00
|
|
|
#include "layout/LETypes.h"
|
2007-06-22 03:57:45 +00:00
|
|
|
#include "letest.h"
|
|
|
|
|
|
|
|
typedef void (*TestCaseCallback) (const char *testID,
|
|
|
|
const char *fontName,
|
|
|
|
const char *fontVersion,
|
|
|
|
const char *fontChecksum,
|
|
|
|
le_int32 scriptCode,
|
|
|
|
le_int32 languageCode,
|
|
|
|
const LEUnicode *text,
|
|
|
|
le_int32 charCount,
|
|
|
|
TestResult *expected);
|
|
|
|
|
|
|
|
U_CAPI void readTestFile(const char *testFilePath, TestCaseCallback callback);
|
|
|
|
|
|
|
|
#endif
|