markus / ConvertService / ServiceBase / ServiceUnitTest / DataBaseTestBase.cs @ c6bf88fd
이력 | 보기 | 이력해설 | 다운로드 (551 Bytes)
1 | 5d863c06 | taeseongkim | using System; |
---|---|---|---|
2 | using Microsoft.VisualStudio.TestTools.UnitTesting; |
||
3 | |||
4 | namespace ServiceUnitTest |
||
5 | { |
||
6 | [TestClass] |
||
7 | public class DataBaseTestBase |
||
8 | { |
||
9 | public Markus.Service.DataBase.ConvertDatabase database; |
||
10 | |||
11 | public DataBaseTestBase() |
||
12 | { |
||
13 | string connection = @"data source=.\SQLEXPRESS;initial catalog=Markus;persist security info=True;user id=ConvertService;Password=ConvertService;MultipleActiveResultSets=True;"; |
||
14 | database = new Markus.Service.DataBase.ConvertDatabase(connection); |
||
15 | } |
||
16 | } |
||
17 | } |