确定NUnit测试是否在PowerShell中完成运行

时间:2017-08-23 19:50:48

标签: powershell nunit nunit-console

我似乎找不到回调或确定NUnit测试是否在PowerShell脚本中运行完毕的好方法。我已经提出了下面的解决方案,但是,它并不牢固。任何人都知道如何解决这个问题?  或者,也许NUnit中有一些我不知道的黑魔法?

提前致谢!

#SLN1: Could check TestResults.xml file length and loop until we're sure tests have ran
#- Then Send command to write to file in S3 Bucket. Then have server script check for a change to that bucket.


$NUNIT_EXE = "C:\Program Files (x86)\NUnit\NUnit.ConsoleRunner.3.7.0\tools\nunit3-console.exe\"
$TESTING_DLL = "C:\CITestFramework\bin\Debug\CITESTS.dll"
#NUnit3 places test results where tests are ran from, so go local
$TESTING_RESULT_FILE = "TestResult.xml" 


Write-Host "Removing old test results."
If (Test-Path $TESTING_RESULT_FILE){
    Remove-Item $TESTING_RESULT_FILE
}


Write-Host "Starting Tests..."
$PROCESS = Start-Process $NUNIT_EXE $TESTING_DLL

$count = 0
$prev_size = 0
$wait = 5
Do{


    If (Test-Path $TESTING_RESULT_FILE){
        $file = Get-Item $TESTING_RESULT_FILE   
        Write-Host "Size:",$file.Length
        Write-Host "Prev Size:", $prev_size
        if($file.Length -gt $prev_size){
            $prev_size = $file.Length
            $wait = 5
            $count = 0
        } else {
            if($file.Length -eq $prev_size){
                $count += 1
                $wait = 15
            }
        }
    }Else{
        Write-Host "File Does Not Exist Yet..."
    }  
    Start-Sleep -s $wait


}Until($count -eq 7)
Write-Host "Tests completed."

#//Write to S3 bucket

1 个答案:

答案 0 :(得分:0)

啊......在这里找到了答案:
Obtaining ExitCode using Start-Process and WaitForExit instead of -Wait

需要等待进程并检查退出代码。这很有效。