Mercurial > pub > bltoolkit
annotate UnitTests/Fluent/MockDataBase/AssertMockDataBaseEx.cs @ 2:79a04c6442bf
file name case fix
author | cin |
---|---|
date | Fri, 22 Aug 2014 13:41:57 +0400 |
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 } |