annotate UnitTests/Fluent/MockDataBase/AssertMockDataBaseEx.cs @ 3:1ef98bd70424
!bug 100 +3h
Исправление проблемы BLToolkit + mono 3.4
author |
cin |
date |
Fri, 22 Aug 2014 17:34:46 +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 } |