From bfb6744780ab7285ffaf62819826e9db85d5e6ab Mon Sep 17 00:00:00 2001 From: Sanghoon Lee Date: Fri, 23 Mar 2018 13:49:53 +0900 Subject: [PATCH] [USB][Non-ACR][Removed test tc] Change-Id: I9cf9997fbb46fd743e29fbb9480ef594e81283c6 --- tct-suite-vs/Tizen.Usb.Tests/testcase/TSSample.cs | 58 ----------------------- 1 file changed, 58 deletions(-) delete mode 100755 tct-suite-vs/Tizen.Usb.Tests/testcase/TSSample.cs diff --git a/tct-suite-vs/Tizen.Usb.Tests/testcase/TSSample.cs b/tct-suite-vs/Tizen.Usb.Tests/testcase/TSSample.cs deleted file mode 100755 index 9f03a36..0000000 --- a/tct-suite-vs/Tizen.Usb.Tests/testcase/TSSample.cs +++ /dev/null @@ -1,58 +0,0 @@ -/* - * Copyright (c) 2018 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 - */ - -using NUnit.Framework; -using NUnit.Framework.TUnit; -using System; -using System.Threading; -using System.Threading.Tasks; -using Tizen; - -namespace Tizen.Sample.Tests { - - [TestFixture] - [Description("Sample Class Tests")] - public class SampleTests { - - private static string _message = "raycad"; - - [SetUp] - public static void Init() - { - LogUtils.Write(LogUtils.DEBUG , LogUtils.TAG , "Preconditions for each TEST"); - } - - [TearDown] - public static void Destroy() - { - LogUtils.Write(LogUtils.DEBUG , LogUtils.TAG , "Postconditions for each TEST"); - } - - [Test] - [Category("P1")] - [Description("Create a test case to test function")] - [Property("SPEC", "Tizen.XXX.XXX.SampleTest M")] - [Property("SPEC_URL", "-")] - [Property("CRITERIA", "MR")] - [Property("AUTHOR", "Nguyen Truong Duong, duong.nt1@samsung.com")] - public static void Test1() - { - var getValue = _message; - Assert.IsInstanceOf(getValue, "Object should be string type."); - Assert.AreEqual(getValue, _message, "Object is not equal"); - } - } -} -- 2.7.4