Mercurial > pub > bltoolkit
annotate UnitTests/Fluent/MockDataBase/AssertMockDataBaseEx.cs @ 9:1e85f66cf767 default tip
update bltoolkit
| author | nickolay | 
|---|---|
| date | Thu, 05 Apr 2018 20:53:26 +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 } | 
