コード例 #1
0
 public void Should_let_the_entity_source_to_create_an_entity()
 {
     InMemoryEntitySource.Verify(instance => instance.Create(Iri), Times.Once);
 }
コード例 #2
0
ファイル: when_querying.cs プロジェクト: markchipman/RDeF.net
 public void Should_obtain_a_queryable_entity_source_directly_from_it()
 {
     InMemoryEntitySource.Verify(instance => instance.AsQueryable <IProduct>(), Times.Once);
 }