LoadEntry() 개인적인 메소드

private LoadEntry ( long timestamp, string moduleName, string tag ) : void
timestamp long
moduleName string
tag string
리턴 void
 private static PersistedVersioning CreateVersioning()
 {
     var history = new History("TableName", MockRepository.GenerateStub<IProviderMetadata>());
     history.LoadEntry(ExistingTimestampForDefaultModule, string.Empty, ExistingTagForDefaultModule);
     history.LoadEntry(ExistingTimestampForTestModule, TestModule, ExistingTagForTestModule);
     return new PersistedVersioning(history);
 }
예제 #2
0
 private static PersistedVersioning CreateVersioning()
 {
     var history = new History(new TableName("TableName", null), A.Fake<IProviderMetadata>());
     history.LoadEntry(ExistingTimestampForDefaultModule, string.Empty, ExistingTagForDefaultModule);
     history.LoadEntry(ExistingTimestampForTestModule, TestModule, ExistingTagForTestModule);
     return new PersistedVersioning(history);
 }