Skip to main content
All docs
V25.1
  • .NET Framework 4.6.2+

    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.v25.1.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