1// Copyright (C) 2016 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html
3/*
4*******************************************************************************
5* Copyright (C) 2007, International Business Machines Corporation and         *
6* others. All Rights Reserved.                                                *
7*******************************************************************************
8*/
9
10#ifndef _TIMEZONEOFFSETLOCALTEST_
11#define _TIMEZONEOFFSETLOCALTEST_
12
13#include "unicode/utypes.h"
14
15#if !UCONFIG_NO_FORMATTING
16
17#include "intltest.h"
18
19class TimeZoneOffsetLocalTest : public IntlTest {
20    // IntlTest override
21    void runIndexedTest(int32_t index, UBool exec, const char*& name, char* par);
22
23    void TestGetOffsetAroundTransition(void);
24};
25
26#endif /* #if !UCONFIG_NO_FORMATTING */
27
28#endif // _TIMEZONEOFFSETLOCALTEST_
29