You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.3 KiB
46 lines
1.3 KiB
// © 2016 and later: Unicode, Inc. and others.
|
|
// License & terms of use: http://www.unicode.org/copyright.html
|
|
/*
|
|
**********************************************************************
|
|
* Copyright (C) 2005-2012, International Business Machines
|
|
* Corporation and others. All Rights Reserved.
|
|
**********************************************************************
|
|
*/
|
|
|
|
#ifndef __CSDETEST_H
|
|
#define __CSDETEST_H
|
|
|
|
#include "unicode/utypes.h"
|
|
#include "unicode/unistr.h"
|
|
|
|
#include "intltest.h"
|
|
|
|
class CharsetDetectionTest: public IntlTest {
|
|
public:
|
|
|
|
CharsetDetectionTest();
|
|
virtual ~CharsetDetectionTest();
|
|
|
|
virtual void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par = NULL );
|
|
|
|
virtual void ConstructionTest();
|
|
virtual void UTF8Test();
|
|
virtual void UTF16Test();
|
|
virtual void C1BytesTest();
|
|
virtual void InputFilterTest();
|
|
virtual void DetectionTest();
|
|
virtual void IBM424Test();
|
|
virtual void IBM420Test();
|
|
virtual void Ticket6394Test();
|
|
virtual void Ticket6954Test();
|
|
|
|
private:
|
|
void checkEncoding(const UnicodeString &testString,
|
|
const UnicodeString &encoding, const UnicodeString &id);
|
|
|
|
virtual const char *getPath(char buffer[2048], const char *filename);
|
|
|
|
};
|
|
|
|
#endif
|