markus / ConvertService / ServiceBase / ServiceUnitTest / DatabaseTest.cs @ d33ef543
이력 | 보기 | 이력해설 | 다운로드 (466 Bytes)
1 | 53c9637d | taeseongkim | using System; |
---|---|---|---|
2 | using System.ServiceModel; |
||
3 | using Microsoft.VisualStudio.TestTools.UnitTesting; |
||
4 | |||
5 | namespace ServiceUnitTest |
||
6 | { |
||
7 | [TestClass] |
||
8 | 5d863c06 | taeseongkim | public class DatabaseTest : DataBaseTestBase |
9 | 53c9637d | taeseongkim | { |
10 | [TestMethod] |
||
11 | public void SetConvertDocTest() |
||
12 | { |
||
13 | } |
||
14 | |||
15 | [TestMethod] |
||
16 | public void GetConvertItemTest() |
||
17 | { |
||
18 | 5d863c06 | taeseongkim | var item = database.GetConvertItem("111111","1"); |
19 | Assert.IsNotNull(item); |
||
20 | 53c9637d | taeseongkim | } |
21 | } |
||
22 | } |