Netcore: Migrate more tests (#9621)

* AB8828 - Migrated ShadowFileSystemTests.cs
Note that the underlying behavior of Directory.EnumerateFiles is changed when search pattern is "". "" is not handled like "*" in netcore.

* AB8828 - Migrated ScopeEventDispatcherTests.cs

* AB8828 - Migrated DistributedCacheBinderTests.cs

* AB8828 - Migrated SchemaValidationTest.cs

* AB8828 - Migrated LocksTests.cs

* AB8828 - Migrated SqlCeTableByTableTest.cs (and renamed to SqlServerTableByTableTest.cs)

* AB8828 - Created DatabaseBuilderTests

* AB8828 - Fix issues with file systems for linux
This commit is contained in:
Bjarke Berg
2021-01-11 09:04:05 +01:00
committed by GitHub
parent 5672aedcee
commit e66ccc536d
19 changed files with 469 additions and 538 deletions

View File

@@ -3,6 +3,7 @@
public interface IEmbeddedDatabaseCreator
{
string ProviderName { get; }
string ConnectionString { get; set; }
void Create();
}
}