This commit is contained in:
Engin Polat 2022-08-21 01:48:52 +00:00 коммит произвёл GitHub
Родитель 50ba60fde5
Коммит 7872eaa413
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 13 добавлений и 13 удалений

Просмотреть файл

@ -1,22 +1,22 @@
BeforeAll {
{{#ResourceTypes}}
. {{ Library }}
{{/ResourceTypes}}
{{#ResourceTypes}}
. {{ Library }}
{{/ResourceTypes}}
}
{{#TestCases}}
Describe '{{ Name }}' {
it '{{ Description }}' {
#arrange
{{ #Parameters }}
{{ Key }} = {{{ Value }}}
{{ /Parameters}}
it '{{ Description }}' {
#arrange
{{ #Parameters }}
{{ Key }} = {{{ Value }}}
{{ /Parameters}}
#act
{{ ActualValueVariable }} = {{GetValueFunctionName}} {{{GetValueFunctionParameterList}}}
#act
{{ ActualValueVariable }} = {{GetValueFunctionName}} {{{GetValueFunctionParameterList}}}
#assert
{{ ActualValueVariable }} | Should -Be {{{ ExpectedValue }}}
}
#assert
{{ ActualValueVariable }} | Should -Be {{{ ExpectedValue }}}
}
}
{{/TestCases}}