blob: 106d8008fe515a7249178ab09ad20d3c53208f48 [file] [log] [blame]
/*
**********************************************************************
* Copyright (C) 2001, International Business Machines
* Corporation and others. All Rights Reserved.
**********************************************************************
* Date Name Description
* 05/23/00 aliu Creation.
**********************************************************************
*/
#ifndef TESTUTIL_H
#define TESTUTIL_H
#include "unicode/unistr.h"
/**
* Utility methods. Everything in this class is static -- do not
* attempt to instantiate.
*/
class TestUtility {
public:
static UnicodeString hex(UChar ch);
static UnicodeString hex(const UnicodeString& s);
static UnicodeString hex(const UnicodeString& s, UChar sep);
private:
TestUtility() {} // Prevent instantiation
};
#endif