annotate UnitTests/Fluent/MockDataBase/AssertMockDataBaseEx.cs @ 7:99cd4f3947d8
Закомментированы строки мешающие добавлению авиа дежурств.
author |
nickolay |
date |
Fri, 27 Oct 2017 18:26:29 +0300 |
parents |
f990fcb411a9 |
children |
|
rev |
line source |
0
|
1 namespace BLToolkit.Fluent.Test.MockDataBase
|
|
2 {
|
|
3 public static class AssertMockDataBaseEx
|
|
4 {
|
|
5 public static AssertDb Assert(this MockDb db)
|
|
6 {
|
|
7 return new AssertDb(db);
|
|
8 }
|
|
9
|
|
10 public static AssertCommandData Assert(this MockCommandData data)
|
|
11 {
|
|
12 return new AssertCommandData(data);
|
|
13 }
|
|
14 }
|
|
15 } |