MISC: Removed test source 60/32160/1 tizen
authorTaeyoung Son <taeyoung2.son@samsung.com>
Tue, 16 Dec 2014 11:16:31 +0000 (20:16 +0900)
committerTaeyoung Son <taeyoung2.son@samsung.com>
Tue, 16 Dec 2014 11:16:31 +0000 (20:16 +0900)
Removed AnimatorUtilsTest.java

Change-Id: I07ff208df6cba94b3feaf88e176eb660219ce6e1
Signed-off-by: Taeyoung Son <taeyoung2.son@samsung.com>
org.tizen.webuibuilder/src/org/tizen/webuibuilder/animator/utils/AnimatorUtilsTest.java [deleted file]

diff --git a/org.tizen.webuibuilder/src/org/tizen/webuibuilder/animator/utils/AnimatorUtilsTest.java b/org.tizen.webuibuilder/src/org/tizen/webuibuilder/animator/utils/AnimatorUtilsTest.java
deleted file mode 100644 (file)
index fb8b2ec..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * UI Builder
- *
- * Copyright (c) 2000 - 2014 Samsung Electronics Co., Ltd. All rights reserved.
- *
- * 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.
- *
- * Contributors:
- * - S-Core Co., Ltd
- *
- */
-
-
-package org.tizen.webuibuilder.animator.utils;
-
-import org.junit.Test;
-
-
-public class AnimatorUtilsTest {
-
-    @Test
-    public void testgetInterpolatedValueLinear() {
-        // double actual = AnimatorUtils.getInterpolatedValue(0.0, 100.0, 50.0,
-        // EasingMethod.Linear);
-        // assertEquals(50.0, actual, 0.001);
-        // actual = AnimatorUtils.getInterpolatedValue(0.0, 100.0, 100.0, EasingMethod.Linear);
-        // assertEquals(100.0, actual, 0.001);
-        // actual = AnimatorUtils.getInterpolatedValue(0.0, 100.0, 0.0, EasingMethod.Linear);
-        // assertEquals(0.0, actual, 0.001);
-    }
-}