EasyTestFixtureContext.RestoreDB(String) Method
Restores the specified database from a backup. The database name must be registered with the RegisterDatabases(IEasyTestDatabaseOptions[]) method.
Namespace: DevExpress.EasyTest.Framework
Assembly: DevExpress.EasyTest.v24.1.dll
NuGet Package: DevExpress.EasyTest
Declaration
Parameters
Name | Type | Description |
---|---|---|
dbName | String | A restored database’s name. |
Remarks
Call the RestoreDB method before running an application.
[Fact]
public void Test() {
FixtureContext.RestoreDB(MainDemoDBName);
var appContext = FixtureContext.CreateApplicationContext(BlazorAppName);
appContext.RunApplication();
//
}
See Also