summaryrefslogtreecommitdiff
path: root/src/test/java/com/android/vts/util/TimeUtilTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/com/android/vts/util/TimeUtilTest.java')
-rw-r--r--src/test/java/com/android/vts/util/TimeUtilTest.java42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/test/java/com/android/vts/util/TimeUtilTest.java b/src/test/java/com/android/vts/util/TimeUtilTest.java
deleted file mode 100644
index 439991d..0000000
--- a/src/test/java/com/android/vts/util/TimeUtilTest.java
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * Copyright (C) 2017 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.vts.util;
-
-import static org.junit.Assert.assertEquals;
-
-import org.junit.Test;
-
-public class TimeUtilTest {
-
- /** Test that date/time strings are formatted correctly. */
- @Test
- public void testFormatDateTime() {
- long time = 1504286976352052l;
- String expected = "2017-09-01 10:29:36 (PDT)";
- String timeString = TimeUtil.getDateTimeZoneString(time);
- assertEquals(expected, timeString);
- }
-
- /** Test that date strings are formatted correctly. */
- @Test
- public void testFormatDate() {
- long time = 1504248634455491l;
- String expected = "2017-08-31";
- String timeString = TimeUtil.getDateString(time);
- assertEquals(expected, timeString);
- }
-}