LoadEntry() private method

private LoadEntry ( long timestamp, string moduleName, string tag ) : void
timestamp long
moduleName string
tag string
return 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);
 }
 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);
 }