summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Chang <vichang@google.com>2022-04-25 10:26:34 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2022-04-25 10:26:34 +0000
commit6663a47367a8afdd2c268743fa318bac55c0e690 (patch)
tree07390a9491962832ee93fdd42bcc900111f3c2dd
parenteb33baa492d32e77733f632e675548e1fa7fed21 (diff)
parent125b1f9e4d0443709bd3f2ec808bd6b5d3dbde01 (diff)
downloadicu-6663a47367a8afdd2c268743fa318bac55c0e690.tar.gz
Merge "Add API coverage for utrans APIs" into tm-dev am: 125b1f9e4d
Original change: https://googleplex-android-review.googlesource.com/c/platform/external/icu/+/17918907 Change-Id: Id4f6e55845990c0661f5b43dffe45790e7161a1e Ignore-AOSP-First: this is an automerge Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--libicu/test/src/utrans_test.cpp38
1 files changed, 38 insertions, 0 deletions
diff --git a/libicu/test/src/utrans_test.cpp b/libicu/test/src/utrans_test.cpp
new file mode 100644
index 000000000..39445259d
--- /dev/null
+++ b/libicu/test/src/utrans_test.cpp
@@ -0,0 +1,38 @@
+/*
+ * Copyright (C) 2022 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <gtest/gtest.h>
+
+#include <unicode/uchar.h>
+#include <unicode/ustring.h>
+#include <unicode/utrans.h>
+
+TEST(Icu4cUTransliteratorTest, test_utrans_transUChars) {
+ UErrorCode status = U_ZERO_ERROR;
+ UChar id[] = u"Any-Upper";
+ UTransliterator* utrans = utrans_openU(id, -1, UTRANS_FORWARD, NULL, 0, NULL, &status);
+ ASSERT_EQ(U_ZERO_ERROR, status);
+
+ UChar str[] = u"HeLlO WoRlD!";
+ int32_t len = sizeof(str) / sizeof(UChar) - 1;
+
+ utrans_transUChars(utrans, str, NULL, len + 1 /*textCapacity*/, 0, &len, &status);
+ utrans_close(utrans);
+ UChar expected[] = u"HELLO WORLD!";
+ ASSERT_EQ(U_ZERO_ERROR, status);
+ ASSERT_EQ(0, u_strcmp(expected, str));
+}
+