summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Chang <vichang@google.com>2022-04-25 10:06:29 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2022-04-25 10:06:29 +0000
commit125b1f9e4d0443709bd3f2ec808bd6b5d3dbde01 (patch)
tree07390a9491962832ee93fdd42bcc900111f3c2dd
parent2919e5e2c836e90846fd2cec07fdce939241c8fc (diff)
parentf05a4b424a78ffeeb0036191f966b7d9952d3ed5 (diff)
downloadicu-android13-frc-odp-release.tar.gz
-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));
+}
+