From 87c629dfe68c23ffc982eef74baedd6a7ec6312d Mon Sep 17 00:00:00 2001 From: Taeyoung Son Date: Tue, 16 Dec 2014 20:16:31 +0900 Subject: [PATCH] MISC: Removed test source Removed AnimatorUtilsTest.java Change-Id: I07ff208df6cba94b3feaf88e176eb660219ce6e1 Signed-off-by: Taeyoung Son --- .../animator/utils/AnimatorUtilsTest.java | 41 ---------------------- 1 file changed, 41 deletions(-) delete mode 100644 org.tizen.webuibuilder/src/org/tizen/webuibuilder/animator/utils/AnimatorUtilsTest.java 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 index fb8b2ec..0000000 --- a/org.tizen.webuibuilder/src/org/tizen/webuibuilder/animator/utils/AnimatorUtilsTest.java +++ /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); - } -} -- 2.7.4