mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-04 21:15:35 +00:00
28 lines
880 B
C++
28 lines
880 B
C++
// © 2016 and later: Unicode, Inc. and others.
|
|
// License & terms of use: http://www.unicode.org/copyright.html
|
|
/*
|
|
*******************************************************************************
|
|
* Copyright (C) 2007, International Business Machines Corporation and *
|
|
* others. All Rights Reserved. *
|
|
*******************************************************************************
|
|
*/
|
|
|
|
#ifndef _TIMEZONEOFFSETLOCALTEST_
|
|
#define _TIMEZONEOFFSETLOCALTEST_
|
|
|
|
#include "unicode/utypes.h"
|
|
|
|
#if !UCONFIG_NO_FORMATTING
|
|
|
|
#include "intltest.h"
|
|
|
|
class TimeZoneOffsetLocalTest : public IntlTest {
|
|
// IntlTest override
|
|
void runIndexedTest(int32_t index, UBool exec, const char*& name, char* par) override;
|
|
|
|
void TestGetOffsetAroundTransition();
|
|
};
|
|
|
|
#endif /* #if !UCONFIG_NO_FORMATTING */
|
|
|
|
#endif // _TIMEZONEOFFSETLOCALTEST_
|