We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c85ad4e commit 8a12e42Copy full SHA for 8a12e42
scripts/util/Test-SharedImplementationsHaveTestCases.ps1
@@ -71,14 +71,17 @@ foreach($q in $queriesToCheck){
71
$row["TEST_DIR_EXISTS"] = $true
72
73
if((Test-Path (Join-Path $testDirectory "test.$Language"))){
74
+ Write-Host "Source Code Does not exist $((Join-Path $testDirectory "test.$Language"))"
75
$row["SOURCE_CODE_EXISTS"] = $true
76
}
77
78
if((Test-Path (Join-Path $testDirectory "$dirNameLower.expected"))){
79
+ Write-Host "expected $((Join-Path $testDirectory "$dirNameLower.expected"))"
80
$row["EXPECTED_EXISTS"] = $true
81
82
83
if((Test-Path (Join-Path $testDirectory "$dirNameLower.ql"))){
84
+ Write-Host "ql $((Join-Path $testDirectory "$dirNameLower.ql"))"
85
$row["REFERENCE_EXISTS"] = $true
86
87
0 commit comments