From: Sanghoon Lee Date: Fri, 23 Mar 2018 04:49:53 +0000 (+0900) Subject: [USB][Non-ACR][Removed test tc] X-Git-Tag: public_m1_final~102 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F63%2F173663%2F1;p=test%2Ftct%2Fcsharp%2Fapi.git [USB][Non-ACR][Removed test tc] Change-Id: I9cf9997fbb46fd743e29fbb9480ef594e81283c6 --- 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"); - } - } -}