From 06ed1dcec3671440f888f4a6f7354de1b176e473 Mon Sep 17 00:00:00 2001 From: Kihong Seong Date: Fri, 2 Sep 2022 03:23:16 +0000 Subject: Add VCardExceptionTest Bug: 237467631 Test: atest VCardExceptionTest Change-Id: I08c105d4b47a46f8d167b789e32d7372d1385c0d (cherry picked from commit 94550f87512eb5ee09893a48727d592021ffc0b0) --- tests/Android.bp | 4 +++ .../android/vcard/tests/VCardExceptionTest.java | 35 ++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 tests/src/com/android/vcard/tests/VCardExceptionTest.java diff --git a/tests/Android.bp b/tests/Android.bp index 5c49410..ec1d932 100644 --- a/tests/Android.bp +++ b/tests/Android.bp @@ -31,6 +31,10 @@ android_test { static_libs: [ "com.android.vcard", "junit", + "androidx.test.ext.truth", + "androidx.test.rules", + "mockito-target", + "truth-prebuilt", ], jacoco: { diff --git a/tests/src/com/android/vcard/tests/VCardExceptionTest.java b/tests/src/com/android/vcard/tests/VCardExceptionTest.java new file mode 100644 index 0000000..6f09fad --- /dev/null +++ b/tests/src/com/android/vcard/tests/VCardExceptionTest.java @@ -0,0 +1,35 @@ +/* + * Copyright 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. + */ + +package com.android.vcard.tests; + +import com.android.vcard.exception.VCardException; + +import junit.framework.TestCase; + +public class VCardExceptionTest extends TestCase { + static final String TEST_MESSAGE = "message"; + + public void testExceptionWithoutMessage() { + VCardException exception = new VCardException(); + assertNull(exception.getMessage()); + } + + public void testExceptionWithMessage() { + VCardException exception = new VCardException(TEST_MESSAGE); + assertEquals(exception.getMessage(), TEST_MESSAGE); + } +} -- cgit v1.2.3