annotate UnitTests/Fluent/MockDataBase/AssertMockDataBaseEx.cs @ 6:11b6da379593
Исправлена странная ошибка при использовании OfType<...>().Where(...)
author |
cin |
date |
Mon, 05 Dec 2016 05:50:52 +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 } |