Browse Source
Dispose `RootServiceProvider ` after unit testing.
pull/20130/head
maliming
2 years ago
No known key found for this signature in database
GPG Key ID: A646B9CB645ECEA4
1 changed files with
4 additions and
0 deletions
-
framework/src/Volo.Abp.TestBase/Volo/Abp/Testing/AbpIntegratedTest.cs
|
|
|
@ -60,6 +60,10 @@ public abstract class AbpIntegratedTest<TStartupModule> : AbpTestBaseWithService |
|
|
|
{ |
|
|
|
Application.Shutdown(); |
|
|
|
TestServiceScope.Dispose(); |
|
|
|
if (RootServiceProvider is IDisposable disposable) |
|
|
|
{ |
|
|
|
disposable.Dispose(); |
|
|
|
} |
|
|
|
Application.Dispose(); |
|
|
|
} |
|
|
|
} |
|
|
|
|