This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
trigger: | |
- '*' | |
pool: | |
name: Default | |
variables: | |
image_name: mcr.microsoft.com/businesscentral/sandbox | |
container_name: Build | |
company_name: My Company |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Test-TranslationIsComplete { | |
param ( | |
# the directory with the source code of the app to be translated | |
[Parameter(Mandatory=$false)] | |
[string] | |
$SourceDir = (Get-Location), | |
# whether to surpress the error | |
[Parameter(Mandatory=$false)] | |
[switch] | |
$SurpressError |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
codeunit 90100 "Automated Test Mgt. BHTMN" | |
{ | |
var | |
CALTestManagement: Codeunit "CAL Test Management"; | |
ObjectNotCompiledErr: Label 'Object not compiled.'; | |
procedure GetTests(TestSuiteName: Code[10]; StartID: Integer; EndID: Integer) | |
var | |
CALTestSuite: Record "CAL Test Suite"; | |
CALTestLine: Record "CAL Test Line"; |