From 67306cd3113c596d321155b9ea17d4e89d7dc64f Mon Sep 17 00:00:00 2001 From: "nguyen.vtan" Date: Thu, 18 Apr 2019 14:22:49 +0700 Subject: [PATCH] [Non-ACR][TUnit Framework] Add time delay (500) in teardown method Change-Id: I47806f4a0ebb27482bfafc5bf1afdc2976c1acec --- tct-suite-vs/nunit.framework/TUnit/TAsyncThreadMgr.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tct-suite-vs/nunit.framework/TUnit/TAsyncThreadMgr.cs b/tct-suite-vs/nunit.framework/TUnit/TAsyncThreadMgr.cs index 0b8ecfa..46fef17 100755 --- a/tct-suite-vs/nunit.framework/TUnit/TAsyncThreadMgr.cs +++ b/tct-suite-vs/nunit.framework/TUnit/TAsyncThreadMgr.cs @@ -190,6 +190,8 @@ namespace NUnit.Framework.TUnit } public void runTearDown() { + Thread.Sleep(500); + TLogger.Write("##### runTearDown in TAsyncThreadMgr class #####"); if (context?.ExecutionStatus == TestExecutionStatus.AbortRequested) { -- 2.7.4