mirror of
https://gitee.com/openharmony/global_i18n
synced 2024-11-23 15:10:32 +00:00
commit
fc190dade5
@ -25,7 +25,9 @@ using namespace OHOS::Global::I18n;
|
||||
using testing::ext::TestSize;
|
||||
using namespace std;
|
||||
|
||||
namespace {
|
||||
namespace OHOS {
|
||||
namespace Global {
|
||||
namespace I18n {
|
||||
class IntlTest : public testing::Test {
|
||||
public:
|
||||
static void SetUpTestCase(void);
|
||||
@ -463,4 +465,6 @@ HWTEST_F(IntlTest, IntlFuncTest0015, TestSize.Level1)
|
||||
EXPECT_EQ(dateFormat->GetTimeZoneName(), "long");
|
||||
delete dateFormat;
|
||||
}
|
||||
}
|
||||
} // namespace I18n
|
||||
} // namespace Global
|
||||
} // namespace OHOS
|
@ -16,6 +16,9 @@
|
||||
#ifndef OHOS_GLOBAL_I18N_INTL_TEST_H
|
||||
#define OHOS_GLOBAL_I18N_INTL_TEST_H
|
||||
|
||||
namespace OHOS {
|
||||
namespace Global {
|
||||
namespace I18n {
|
||||
int IntlFuncTest001(void);
|
||||
int IntlFuncTest002(void);
|
||||
int IntlFuncTest003(void);
|
||||
@ -35,4 +38,7 @@ int IntlFuncTest0016(void);
|
||||
int IntlFuncTest0017(void);
|
||||
int IntlFuncTest0018(void);
|
||||
int IntlFuncTest0019(void);
|
||||
} // namespace I18n
|
||||
} // namespace Global
|
||||
} // namespace OHOS
|
||||
#endif
|
@ -22,7 +22,9 @@ using namespace OHOS::Global::I18n;
|
||||
using testing::ext::TestSize;
|
||||
using namespace std;
|
||||
|
||||
namespace {
|
||||
namespace OHOS {
|
||||
namespace Global {
|
||||
namespace I18n {
|
||||
class LocaleConfigTest : public testing::Test {
|
||||
public:
|
||||
static void SetUpTestCase(void);
|
||||
@ -185,4 +187,6 @@ HWTEST_F(LocaleConfigTest, LocaleConfigFuncTest012, TestSize.Level1)
|
||||
{
|
||||
EXPECT_EQ(LocaleConfig::GetDisplayRegion("zh-Hans", "en-US", true), "China");
|
||||
}
|
||||
} // namespace
|
||||
} // namespace I18n
|
||||
} // namespace Global
|
||||
} // namespace OHOS
|
@ -16,6 +16,9 @@
|
||||
#ifndef OHOS_GLOBAL_I18N_LOCALE_CONFIG_TEST
|
||||
#define OHOS_GLOBAL_I18N_LOCALE_CONFIG_TEST
|
||||
|
||||
namespace OHOS {
|
||||
namespace Global {
|
||||
namespace I18n {
|
||||
int LocaleConfigFuncTest001(void);
|
||||
int LocaleConfigFuncTest002(void);
|
||||
int LocaleConfigFuncTest003(void);
|
||||
@ -28,4 +31,7 @@ int LocaleConfigFuncTest009(void);
|
||||
int LocaleConfigFuncTest010(void);
|
||||
int LocaleConfigFuncTest011(void);
|
||||
int LocaleConfigFuncTest012(void);
|
||||
} // namespace I18n
|
||||
} // namespace Global
|
||||
} // namespace OHOS
|
||||
#endif
|
@ -23,7 +23,9 @@ using namespace OHOS::Global::I18n;
|
||||
using testing::ext::TestSize;
|
||||
using namespace std;
|
||||
|
||||
namespace {
|
||||
namespace OHOS {
|
||||
namespace Global {
|
||||
namespace I18n {
|
||||
class ZoneUtilPerformanceTest : public testing::Test {
|
||||
public:
|
||||
static void SetUpTestCase(void);
|
||||
@ -187,4 +189,6 @@ HWTEST_F(ZoneUtilPerformanceTest, ZoneUtilPerformanceFuncTest006, TestSize.Leve
|
||||
average = total / 1000.0;
|
||||
EXPECT_LT(average, 10300);
|
||||
}
|
||||
}
|
||||
} // namespace I18n
|
||||
} // namespace Global
|
||||
} // namespace OHOS
|
@ -16,10 +16,16 @@
|
||||
#ifndef OHOS_GLOBAL_I18N_ZONE_UTIL_PERFORMANCE_TEST_H
|
||||
#define OHOS_GLOBAL_I18N_ZONE_UTIL_PERFORMANCE_TEST_H
|
||||
|
||||
namespace OHOS {
|
||||
namespace Global {
|
||||
namespace I18n {
|
||||
int ZoneUtilPerformanceFuncTest001(void);
|
||||
int ZoneUtilPerformanceFuncTest002(void);
|
||||
int ZoneUtilPerformanceFuncTest003(void);
|
||||
int ZoneUtilPerformanceFuncTest004(void);
|
||||
int ZoneUtilPerformanceFuncTest005(void);
|
||||
int ZoneUtilPerformanceFuncTest006(void);
|
||||
} // namespace I18n
|
||||
} // namespace Global
|
||||
} // namespace OHOS
|
||||
#endif
|
@ -20,7 +20,9 @@ using namespace OHOS::Global::I18n;
|
||||
using testing::ext::TestSize;
|
||||
using namespace std;
|
||||
|
||||
namespace {
|
||||
namespace OHOS {
|
||||
namespace Global {
|
||||
namespace I18n {
|
||||
class ZoneUtilTest : public testing::Test {
|
||||
public:
|
||||
static void SetUpTestCase(void);
|
||||
@ -184,4 +186,6 @@ HWTEST_F(ZoneUtilTest, ZoneUtilFuncTest008, TestSize.Level1)
|
||||
string out = util.GetDefaultZone(number, 8 * 3600 * 1000);
|
||||
EXPECT_EQ(expects[0], out);
|
||||
}
|
||||
}
|
||||
} // namespace I18n
|
||||
} // namespace Global
|
||||
} // namespace OHOS
|
@ -16,6 +16,9 @@
|
||||
#ifndef OHOS_GLOBAL_I18N_ZONE_UTIL_TEST_H
|
||||
#define OHOS_GLOBAL_I18N_ZONE_UTIL_TEST_H
|
||||
|
||||
namespace OHOS {
|
||||
namespace Global {
|
||||
namespace I18n {
|
||||
int ZoneUtilFuncTest001(void);
|
||||
int ZoneUtilFuncTest002(void);
|
||||
int ZoneUtilFuncTest003(void);
|
||||
@ -24,4 +27,7 @@ int ZoneUtilFuncTest005(void);
|
||||
int ZoneUtilFuncTest006(void);
|
||||
int ZoneUtilFuncTest007(void);
|
||||
int ZoneUtilFuncTest008(void);
|
||||
} // namespace I18n
|
||||
} // namespace Global
|
||||
} // namespace OHOS
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user