[USB][Non-ACR][Removed test tc] 63/173663/1
authorSanghoon Lee <shooney.lee@samsung.com>
Fri, 23 Mar 2018 04:49:53 +0000 (13:49 +0900)
committerSanghoon Lee <shooney.lee@samsung.com>
Fri, 23 Mar 2018 04:49:53 +0000 (13:49 +0900)
Change-Id: I9cf9997fbb46fd743e29fbb9480ef594e81283c6

tct-suite-vs/Tizen.Usb.Tests/testcase/TSSample.cs [deleted file]

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 (executable)
index 9f03a36..0000000
+++ /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<string>(getValue, "Object should be string type.");
-            Assert.AreEqual(getValue, _message, "Object is not equal");
-        }
-    }
-}