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

    EasyTestFixtureContext.CloseRunningApplications() Method

    Closes all the applications started before. Must be called after test execution.

    Namespace: DevExpress.EasyTest.Framework

    Assembly: DevExpress.EasyTest.v25.1.dll

    NuGet Package: DevExpress.EasyTest

    Declaration

    public void CloseRunningApplications()

    Remarks

    After test execution, call the CloseRunningApplications method to close the started applications.

    [Fact]
    public void Test() { 
        var appContext = FixtureContext.CreateApplicationContext(BlazorAppName); 
        appContext.RunApplication(); 
        // 
    } 
    public void Dispose() { 
        FixtureContext.CloseRunningApplications(); 
    }
    
    See Also