summaryrefslogtreecommitdiffstats
path: root/intl/components/gtest/TestNumberingSystem.cpp
blob: c6f15b6559c7ab497eb6d3d53a07bb596816f613 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "gtest/gtest.h"

#include "mozilla/intl/NumberingSystem.h"
#include "mozilla/Span.h"

namespace mozilla::intl {

TEST(IntlNumberingSystem, GetName)
{
  auto numbers_en = NumberingSystem::TryCreate("en").unwrap();
  ASSERT_EQ(numbers_en->GetName().unwrap(), MakeStringSpan("latn"));

  auto numbers_ar = NumberingSystem::TryCreate("ar").unwrap();
  ASSERT_EQ(numbers_ar->GetName().unwrap(), MakeStringSpan("arab"));

  auto numbers_ff_Adlm = NumberingSystem::TryCreate("ff-Adlm").unwrap();
  ASSERT_EQ(numbers_ff_Adlm->GetName().unwrap(), MakeStringSpan("adlm"));
}

}  // namespace mozilla::intl