summaryrefslogtreecommitdiff
path: root/InCallUI
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2015-03-02 17:44:24 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-03-02 17:44:25 +0000
commitc4bb1c74483332ecdb11f1c50eee3433001b5cd8 (patch)
tree5e8e4ba19fbaba66c88726a17f3d881c9f80d234 /InCallUI
parenta695b86ebbf468fb3e4417837127aed4a10577d0 (diff)
parent0f351355e9f6215f6b9d79b279e8c8ec9754bcf3 (diff)
Merge "Add InCallUI tests folder and basic test"
Diffstat (limited to 'InCallUI')
-rw-r--r--InCallUI/tests/src/com/android/incallui/CallerInfoUtilsTest.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/InCallUI/tests/src/com/android/incallui/CallerInfoUtilsTest.java b/InCallUI/tests/src/com/android/incallui/CallerInfoUtilsTest.java
new file mode 100644
index 000000000..5baabce1b
--- /dev/null
+++ b/InCallUI/tests/src/com/android/incallui/CallerInfoUtilsTest.java
@@ -0,0 +1,29 @@
+/*
+ * Copyright (C) 2015 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
+ */
+
+package com.android.incallui;
+
+import android.test.AndroidTestCase;
+
+public class CallerInfoUtilsTest extends AndroidTestCase {
+ public void testToLogSafeNumber_email() {
+ assertEquals("xxx@xxx.xxx", CallerInfoUtils.toLogSafePhoneNumber("foo@foo.com"));
+ }
+
+ public void testToLogSafeNumber_phoneNumber() {
+ assertEquals("xxx-xxx-xxxx", CallerInfoUtils.toLogSafePhoneNumber("123-456-6789"));
+ }
+}