Skip to main content
All docs
V23.2
.NET 6.0+

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.v23.2.dll

NuGet Package: DevExpress.EasyTest

Declaration

public void RestoreDB(
    string dbName
)

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