comparison UnitTests/Fluent/MockDataBase/AssertMockDataBaseEx.cs @ 0:f990fcb411a9

Копия текущей версии из github
author cin
date Thu, 27 Mar 2014 21:46:09 +0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f990fcb411a9
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 }