From f6ca6ea007cf28522e4c0734132cca025f80a7c5 Mon Sep 17 00:00:00 2001 From: Wojciech Sciesinski Date: Mon, 22 Aug 2016 22:13:44 +0200 Subject: [PATCH 1/2] Descriptions of demo tests extended, tags (Static/Random) added --- demo/DemoFunction1.Tests.ps1 | 158 +++++++++++++++++++++++------------ demo/DemoFunction2.Tests.ps1 | 158 +++++++++++++++++++++++------------ 2 files changed, 206 insertions(+), 110 deletions(-) diff --git a/demo/DemoFunction1.Tests.ps1 b/demo/DemoFunction1.Tests.ps1 index a1e4cb5..ba774f0 100644 --- a/demo/DemoFunction1.Tests.ps1 +++ b/demo/DemoFunction1.Tests.ps1 @@ -1,55 +1,103 @@ -$here = Split-Path -Parent $MyInvocation.MyCommand.Path -$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path) -replace '\.Tests\.', '.' -. "$here\$sut" - -Import-Module "$here\DemoFunction1.ps1" - -Describe "DemoFunction1" { - - Context "Useless test 1-1" { - - It "does something useful 1-1-1" { - DemoFunction1 -FirstParam 5 | Should BeLessThan 3 - - } - - It "does something useful 1-1-2" { - - DemoFunction1 -FirstParam 5 | Should BeLessThan 7 - - } - - It "does something useful 1-1-3" { - - DemoFunction1 -FirstParam $(Get-Random -Maximum 100 -Minimum 0) | Should BeLessThan $(Get-Random -Maximum 100 -Minimum 0) - - } - - } - - Context "Useless test 1-2" { - - It "does something useless 1-2-1" { - - DemoFunction1 -FirstParam 6 | Should Be 5 - - } - - It "does something useless 1-2-2" { - - DemoFunction1 -FirstParam 5 | Should Be 5 - - } - - It "does something useful 1-2-3" { - - $RandomResult = $(Get-Random -Maximum 100 -Minimum 0) - - DemoFunction1 -FirstParam $(Get-Random -Maximum 100 -Minimum 0) | Should BeLessThan $RandomResult - - } - - } - -} - +$here = Split-Path -Parent $MyInvocation.MyCommand.Path +$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path) -replace '\.Tests\.', '.' +. "$here\$sut" + +Import-Module "$here\DemoFunction1.ps1" + +Describe "DemoFunction1 - Random" -Tag Random { + + Context "Useless test R-1-1" { + + It "does something useful R-1-1-1" { + + DemoFunction1 -FirstParam $(Get-Random -Maximum 2 -Minimum 0) | Should Be $true + + } + + It "does something useful R-1-1-2" { + + DemoFunction1 -FirstParam $(Get-Random -Maximum 10 -Minimum 0) | Should BeLessThan 7 + + } + + It "does something useful R-1-1-3" { + + DemoFunction1 -FirstParam $(Get-Random -Maximum 100 -Minimum 0) | Should BeLessThan $(Get-Random -Maximum 100 -Minimum 0) + + } + + } + + Context "Useless test R-1-2" { + + It "does something useless R-1-2-1" { + + DemoFunction1 -FirstParam $(Get-Random -Maximum 32 -Minimum 27) | Should Be 30 + + } + + It "does something useless R-1-2-2" { + + DemoFunction1 -FirstParam $(Get-Random -Maximum 100 -Minimum 0) | Should BeGreaterThan 30 + + } + + It "does something useful R-1-2-3" { + + $RandomResult = $(Get-Random -Maximum 100 -Minimum 0) + + DemoFunction1 -FirstParam $(Get-Random -Maximum 100 -Minimum 0) | Should BeLessThan $RandomResult + + } + + } + +} + +Describe "DemoFunction1 - Static" -Tag Static { + + Context "Useless test S-1-1" { + + It "does something useful S-1-1-1" { + + DemoFunction1 -FirstParam 5 | Should BeLessThan 3 + + } + + It "does something useful S-1-1-2" { + + DemoFunction1 -FirstParam 5 | Should BeLessThan 7 + + } + + It "does something useful S-1-1-3" { + + DemoFunction1 -FirstParam 56 | Should Be 56 + + } + + } + + Context "Useless test S-1-2" { + + It "does something useless S-1-2-1" { + + DemoFunction1 -FirstParam 6 | Should Be 5 + + } + + It "does something useless S-1-2-2" { + + DemoFunction1 -FirstParam 5 | Should BeGreaterThan 3 + + } + + It "does something useful S-1-2-3" { + + DemoFunction1 -FirstParam 2 | Should Not Be 2 + + } + + } + +} \ No newline at end of file diff --git a/demo/DemoFunction2.Tests.ps1 b/demo/DemoFunction2.Tests.ps1 index 50220e7..600df7e 100644 --- a/demo/DemoFunction2.Tests.ps1 +++ b/demo/DemoFunction2.Tests.ps1 @@ -1,55 +1,103 @@ -$here = Split-Path -Parent $MyInvocation.MyCommand.Path -$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path) -replace '\.Tests\.', '.' -. "$here\$sut" - -Import-Module "$here\DemoFunction2.ps1" - -Describe "DemoFunction2" { - - Context "Useless test 2-1" { - - It "does something useful 2-1-1" { - DemoFunction2 -FirstParam 5 | Should BeLessThan 3 - - } - - It "does something useful 2-1-2" { - - DemoFunction2 -FirstParam 5 | Should BeLessThan 6 - - } - - It "does something useful 2-1-3" { - - DemoFunction2 -FirstParam $(Get-Random -Maximum 100 -Minimum 0) | Should BeLessThan $(Get-Random -Maximum 100 -Minimum 0) - - } - - } - - Context "Useless test 2-2" { - - It "does something useless 2-2-1" { - - DemoFunction2 -FirstParam 6 | Should Be 5 - - } - - It "does something useless 2-2-2" { - - DemoFunction2 -FirstParam 5 | Should Be 5 - - } - - It "does something useful 2-2-3" { - - $RandomResult = $(Get-Random -Maximum 100 -Minimum 0) - - DemoFunction2 -FirstParam $(Get-Random -Maximum 100 -Minimum 0) | Should BeLessThan $RandomResult - - - } - - } - -} +$here = Split-Path -Parent $MyInvocation.MyCommand.Path +$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path) -replace '\.Tests\.', '.' +. "$here\$sut" + +Import-Module "$here\DemoFunction2.ps1" + +Describe "DemoFunction2 - Random" -Tag Random { + + Context "Useless test R-2-1" { + + It "does something useful R-2-1-1" { + + DemoFunction2 -FirstParam $(Get-Random -Maximum 2 -Minimum 0) | Should Be $true + + } + + It "does something useful R-2-2-2" { + + DemoFunction2 -FirstParam $(Get-Random -Maximum 10 -Minimum 0) | Should BeLessThan 7 + + } + + It "does something useful R-2-1-3" { + + DemoFunction2 -FirstParam $(Get-Random -Maximum 100 -Minimum 0) | Should BeLessThan $(Get-Random -Maximum 100 -Minimum 0) + + } + + } + + Context "Useless test R-2-2" { + + It "does something useless R-2-2-1" { + + DemoFunction2 -FirstParam $(Get-Random -Maximum 32 -Minimum 27) | Should Be 30 + + } + + It "does something useless R-2-2-2" { + + DemoFunction2 -FirstParam $(Get-Random -Maximum 100 -Minimum 0) | Should BeGreaterThan 30 + + } + + It "does something useful R-2-2-3" { + + $RandomResult = $(Get-Random -Maximum 100 -Minimum 0) + + DemoFunction2 -FirstParam $(Get-Random -Maximum 100 -Minimum 0) | Should BeLessThan $RandomResult + + } + + } + +} + +Describe "DemoFunction2 - Static" -Tag Static { + + Context "Useless test S-2-1" { + + It "does something useful S-2-1-1" { + + DemoFunction2 -FirstParam 3 | Should Be 3 + + } + + It "does something useful S-2-2-2" { + + DemoFunction2 -FirstParam 8 | Should BeGreaterThan 7 + + } + + It "does something useful S-2-1-3" { + + DemoFunction2 -FirstParam 56 | Should Not Be 56 + + } + + } + + Context "Useless test S-2-2" { + + It "does something useless S-2-2-1" { + + DemoFunction2 -FirstParam 6 | Should Be 6 + + } + + It "does something useless S-2-2-2" { + + DemoFunction2 -FirstParam 2 | Should BeGreaterThan 3 + + } + + It "does something useful S-2-2-3" { + + DemoFunction2 -FirstParam 1 | Should BeLessThan 2 + + } + + } + +} \ No newline at end of file From bae9948057c383f6bcacca728fd81b027ccb3c89 Mon Sep 17 00:00:00 2001 From: Wojciech Sciesinski Date: Mon, 22 Aug 2016 22:16:22 +0200 Subject: [PATCH 2/2] Examples based on the version 1.3.3 added --- examples/1.3.3/README.md | 30 ++++++++ examples/1.3.3/en-US/20160822a.docx | Bin 0 -> 43819 bytes examples/1.3.3/en-US/20160822a.html | 91 ++++++++++++++++++++++ examples/1.3.3/en-US/20160822a.txt | 113 +++++++++++++++++++++++++++ examples/1.3.3/en-US/20160822b.docx | Bin 0 -> 38924 bytes examples/1.3.3/en-US/20160822b.html | 80 +++++++++++++++++++ examples/1.3.3/en-US/20160822b.txt | 114 ++++++++++++++++++++++++++++ examples/1.3.3/pl-PL/20160822a.docx | Bin 0 -> 44389 bytes examples/1.3.3/pl-PL/20160822a.html | 92 ++++++++++++++++++++++ examples/1.3.3/pl-PL/20160822a.txt | 114 ++++++++++++++++++++++++++++ examples/1.3.3/pl-PL/20160822b.docx | Bin 0 -> 39053 bytes examples/1.3.3/pl-PL/20160822b.html | 80 +++++++++++++++++++ examples/1.3.3/pl-PL/20160822b.txt | 114 ++++++++++++++++++++++++++++ 13 files changed, 828 insertions(+) create mode 100644 examples/1.3.3/README.md create mode 100644 examples/1.3.3/en-US/20160822a.docx create mode 100644 examples/1.3.3/en-US/20160822a.html create mode 100644 examples/1.3.3/en-US/20160822a.txt create mode 100644 examples/1.3.3/en-US/20160822b.docx create mode 100644 examples/1.3.3/en-US/20160822b.html create mode 100644 examples/1.3.3/en-US/20160822b.txt create mode 100644 examples/1.3.3/pl-PL/20160822a.docx create mode 100644 examples/1.3.3/pl-PL/20160822a.html create mode 100644 examples/1.3.3/pl-PL/20160822a.txt create mode 100644 examples/1.3.3/pl-PL/20160822b.docx create mode 100644 examples/1.3.3/pl-PL/20160822b.html create mode 100644 examples/1.3.3/pl-PL/20160822b.txt diff --git a/examples/1.3.3/README.md b/examples/1.3.3/README.md new file mode 100644 index 0000000..f537df7 --- /dev/null +++ b/examples/1.3.3/README.md @@ -0,0 +1,30 @@ +## Example files generated by +- Format-Pester v. 1.3.3 +- PScribo v. 0.7.12.47 + +## Known issues +- Polish (pl-PL) specific letters are not correctly dipslayed in a text format - [bug need be investigated](https://github.com/equelin/Format-Pester/issues/12) + +## en-US + +### 20160822a +```powershell +Invoke-Pester -Path .\demo\ -Quiet -PassThru | Format-Pester -Format word,html,text -Path .\examples\1.3.3\en-US\ -BaseFileName 20160822a -GroupResultsBy Result-Describe -Language en-us +``` + +### 20160823b +```powershell +Invoke-Pester -Path .\demo\ -Quiet -PassThru -Tag Static | format-pester -Format word,html,text -Path .\examples\1.3.3\en-US\ -BaseFileName 20160822b -GroupResultsBy Result-Describe-Context -Language en-us +``` + +## pl-PL + +### 20160822a +```powershell +Invoke-Pester -Path .\demo\ -Quiet -PassThru | Format-Pester -Format word,html,text -Path .\examples\1.3.3\pl-PL\ -BaseFileName 20160822a -GroupResultsBy Result-Describe -Language pl-PL +``` + +### 20160823b +```powershell +Invoke-Pester -Path .\demo\ -Quiet -PassThru -Tag Static | format-pester -Format word,html,text -Path .\examples\1.3.3\pl-PL\ -BaseFileName 20160822b -GroupResultsBy Result-Describe-Context -Language pl-PL +``` \ No newline at end of file diff --git a/examples/1.3.3/en-US/20160822a.docx b/examples/1.3.3/en-US/20160822a.docx new file mode 100644 index 0000000000000000000000000000000000000000..5a1451afe5c7cc08c5b18c4ed82edc271c6822ce GIT binary patch literal 43819 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 + +20160822a + +
+

Table of Contents

+ + + + + + + + + + + +
1. Results summary
2. Failed tests
   2.1. Details for failed tests by Describe block: DemoFunction1 - Random
   2.2. Details for failed tests by Describe block: DemoFunction1 - Static
   2.3. Details for failed tests by Describe block: DemoFunction2 - Random
   2.4. Details for failed tests by Describe block: DemoFunction2 - Static
3. Passed tests
   3.1. Details for passed tests by Describe block: DemoFunction1 - Random
   3.2. Details for passed tests by Describe block: DemoFunction1 - Static
   3.3. Details for passed tests by Describe block: DemoFunction2 - Random
   3.4. Details for passed tests by Describe block: DemoFunction2 - Static
+

1. Results summary

+ +
Total TestsPassed TestsFailed TestsSkipped TestsPending Tests
2415900
+

2. Failed tests

2.1. Details for failed tests by Describe block: DemoFunction1 - Random

+ + + +
ContextNameFailure Message
Useless test R-1-1does something useful R-1-1-1Expected: {True} +But was: {0}
Useless test R-1-2does something useless R-1-2-1Expected: {30} +But was: {28}
Useless test R-1-2does something useless R-1-2-2Expected {13} to be greater than {30}
+

2.2. Details for failed tests by Describe block: DemoFunction1 - Static

+ + + +
ContextNameFailure Message
Useless test S-1-1does something useful S-1-1-1Expected {5} to be less than {3}
Useless test S-1-2does something useless S-1-2-1Expected: {5} +But was: {6}
Useless test S-1-2does something useful S-1-2-3Expected: value was {2}, but should not have been the same
+

2.3. Details for failed tests by Describe block: DemoFunction2 - Random

+ +
ContextNameFailure Message
Useless test R-2-2does something useless R-2-2-1Expected: {30} +But was: {29}
+

2.4. Details for failed tests by Describe block: DemoFunction2 - Static

+ + +
ContextNameFailure Message
Useless test S-2-1does something useful S-2-1-3Expected: value was {56}, but should not have been the same
Useless test S-2-2does something useless S-2-2-2Expected {2} to be greater than {3}
+

3. Passed tests

3.1. Details for passed tests by Describe block: DemoFunction1 - Random

+ + + +
DescribeContextName
DemoFunction1 - RandomUseless test R-1-1does something useful R-1-1-2
DemoFunction1 - RandomUseless test R-1-1does something useful R-1-1-3
DemoFunction1 - RandomUseless test R-1-2does something useful R-1-2-3
+

3.2. Details for passed tests by Describe block: DemoFunction1 - Static

+ + + +
DescribeContextName
DemoFunction1 - StaticUseless test S-1-1does something useful S-1-1-2
DemoFunction1 - StaticUseless test S-1-1does something useful S-1-1-3
DemoFunction1 - StaticUseless test S-1-2does something useless S-1-2-2
+

3.3. Details for passed tests by Describe block: DemoFunction2 - Random

+ + + + + +
DescribeContextName
DemoFunction2 - RandomUseless test R-2-1does something useful R-2-1-1
DemoFunction2 - RandomUseless test R-2-1does something useful R-2-2-2
DemoFunction2 - RandomUseless test R-2-1does something useful R-2-1-3
DemoFunction2 - RandomUseless test R-2-2does something useless R-2-2-2
DemoFunction2 - RandomUseless test R-2-2does something useful R-2-2-3
+

3.4. Details for passed tests by Describe block: DemoFunction2 - Static

+ + + + +
DescribeContextName
DemoFunction2 - StaticUseless test S-2-1does something useful S-2-1-1
DemoFunction2 - StaticUseless test S-2-1does something useful S-2-2-2
DemoFunction2 - StaticUseless test S-2-2does something useless S-2-2-1
DemoFunction2 - StaticUseless test S-2-2does something useful S-2-2-3
diff --git a/examples/1.3.3/en-US/20160822a.txt b/examples/1.3.3/en-US/20160822a.txt new file mode 100644 index 0000000..c2ad657 --- /dev/null +++ b/examples/1.3.3/en-US/20160822a.txt @@ -0,0 +1,113 @@ +Table of Contents +------------------------------------------------------------------------------------------------------------------------ +1. Results summary +2. Failed tests + 2.1. Details for failed tests by Describe block: DemoFunction1 - Random + 2.2. Details for failed tests by Describe block: DemoFunction1 - Static + 2.3. Details for failed tests by Describe block: DemoFunction2 - Random + 2.4. Details for failed tests by Describe block: DemoFunction2 - Static +3. Passed tests + 3.1. Details for passed tests by Describe block: DemoFunction1 - Random + 3.2. Details for passed tests by Describe block: DemoFunction1 - Static + 3.3. Details for passed tests by Describe block: DemoFunction2 - Random + 3.4. Details for passed tests by Describe block: DemoFunction2 - Static + + +1. Results summary +------------------------------------------------------------------------------------------------------------------------ + +Total Tests Passed Tests Failed Tests Skipped Tests Pending Tests +----------- ------------ ------------ ------------- ------------- + 24 15 9 0 0 + + +2. Failed tests +------------------------------------------------------------------------------------------------------------------------ + +2.1. Details for failed tests by Describe block: DemoFunction1 - Random +------------------------------------------------------------------------------------------------------------------------ + +Context Name Failure Message +------- ---- --------------- +Useless test R-1-1 does something useful R-1-1-1 Expected: {True} + But was: {0} +Useless test R-1-2 does something useless R-1-2-1 Expected: {30} + But was: {28} +Useless test R-1-2 does something useless R-1-2-2 Expected {13} to be greater than {30} + + +2.2. Details for failed tests by Describe block: DemoFunction1 - Static +------------------------------------------------------------------------------------------------------------------------ + +Context Name Failure Message +------- ---- --------------- +Useless test S-1-1 does something useful S-1-1-1 Expected {5} to be less than {3} +Useless test S-1-2 does something useless S-1-2-1 Expected: {5} + But was: {6} +Useless test S-1-2 does something useful S-1-2-3 Expected: value was {2}, but should not have been the same + + +2.3. Details for failed tests by Describe block: DemoFunction2 - Random +------------------------------------------------------------------------------------------------------------------------ + +Context Name Failure Message +------- ---- --------------- +Useless test R-2-2 does something useless R-2-2-1 Expected: {30} + But was: {29} + + +2.4. Details for failed tests by Describe block: DemoFunction2 - Static +------------------------------------------------------------------------------------------------------------------------ + +Context Name Failure Message +------- ---- --------------- +Useless test S-2-1 does something useful S-2-1-3 Expected: value was {56}, but should not have been the same +Useless test S-2-2 does something useless S-2-2-2 Expected {2} to be greater than {3} + + +3. Passed tests +------------------------------------------------------------------------------------------------------------------------ + +3.1. Details for passed tests by Describe block: DemoFunction1 - Random +------------------------------------------------------------------------------------------------------------------------ + +Describe Context Name +-------- ------- ---- +DemoFunction1 - Random Useless test R-1-1 does something useful R-1-1-2 +DemoFunction1 - Random Useless test R-1-1 does something useful R-1-1-3 +DemoFunction1 - Random Useless test R-1-2 does something useful R-1-2-3 + + +3.2. Details for passed tests by Describe block: DemoFunction1 - Static +------------------------------------------------------------------------------------------------------------------------ + +Describe Context Name +-------- ------- ---- +DemoFunction1 - Static Useless test S-1-1 does something useful S-1-1-2 +DemoFunction1 - Static Useless test S-1-1 does something useful S-1-1-3 +DemoFunction1 - Static Useless test S-1-2 does something useless S-1-2-2 + + +3.3. Details for passed tests by Describe block: DemoFunction2 - Random +------------------------------------------------------------------------------------------------------------------------ + +Describe Context Name +-------- ------- ---- +DemoFunction2 - Random Useless test R-2-1 does something useful R-2-1-1 +DemoFunction2 - Random Useless test R-2-1 does something useful R-2-2-2 +DemoFunction2 - Random Useless test R-2-1 does something useful R-2-1-3 +DemoFunction2 - Random Useless test R-2-2 does something useless R-2-2-2 +DemoFunction2 - Random Useless test R-2-2 does something useful R-2-2-3 + + +3.4. Details for passed tests by Describe block: DemoFunction2 - Static +------------------------------------------------------------------------------------------------------------------------ + +Describe Context Name +-------- ------- ---- +DemoFunction2 - Static Useless test S-2-1 does something useful S-2-1-1 +DemoFunction2 - Static Useless test S-2-1 does something useful S-2-2-2 +DemoFunction2 - Static Useless test S-2-2 does something useless S-2-2-1 +DemoFunction2 - Static Useless test S-2-2 does something useful S-2-2-3 + + diff --git a/examples/1.3.3/en-US/20160822b.docx b/examples/1.3.3/en-US/20160822b.docx new file mode 100644 index 0000000000000000000000000000000000000000..402bb63917141a2f285a3d545b4ce3b7c41ed613 GIT binary patch literal 38924 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 + +20160822b + +
+

Table of Contents

+ + + + + + + + + + + + + + + +
1. Results summary
2. Failed tests
   2.1. Details for failed tests by Describe block: DemoFunction1 - Static
      2.1.1. Details for failed tests by Context block: Useless test S-1-1
      2.1.2. Details for failed tests by Context block: Useless test S-1-2
   2.2. Details for failed tests by Describe block: DemoFunction2 - Static
      2.2.1. Details for failed tests by Context block: Useless test S-2-1
      2.2.2. Details for failed tests by Context block: Useless test S-2-2
3. Passed tests
   3.1. Details for passed tests by Describe block: DemoFunction1 - Static
      3.1.1. Details for passed tests by Context block: Useless test S-1-1
      3.1.2. Details for passed tests by Context block: Useless test S-1-2
   3.2. Details for passed tests by Describe block: DemoFunction2 - Static
      3.2.1. Details for passed tests by Context block: Useless test S-2-1
      3.2.2. Details for passed tests by Context block: Useless test S-2-2
+

1. Results summary

+ +
Total TestsPassed TestsFailed TestsSkipped TestsPending Tests
127500
+

2. Failed tests

2.1. Details for failed tests by Describe block: DemoFunction1 - Static

2.1.1. Details for failed tests by Context block: Useless test S-1-1

+ +
ContextNameFailure Message
Useless test S-1-1does something useful S-1-1-1Expected {5} to be less than {3}
+

2.1.2. Details for failed tests by Context block: Useless test S-1-2

+ + +
ContextNameFailure Message
Useless test S-1-2does something useless S-1-2-1Expected: {5} +But was: {6}
Useless test S-1-2does something useful S-1-2-3Expected: value was {2}, but should not have been the same
+

2.2. Details for failed tests by Describe block: DemoFunction2 - Static

2.2.1. Details for failed tests by Context block: Useless test S-2-1

+ +
ContextNameFailure Message
Useless test S-2-1does something useful S-2-1-3Expected: value was {56}, but should not have been the same
+

2.2.2. Details for failed tests by Context block: Useless test S-2-2

+ +
ContextNameFailure Message
Useless test S-2-2does something useless S-2-2-2Expected {2} to be greater than {3}
+

3. Passed tests

3.1. Details for passed tests by Describe block: DemoFunction1 - Static

3.1.1. Details for passed tests by Context block: Useless test S-1-1

+ + +
DescribeContextName
DemoFunction1 - StaticUseless test S-1-1does something useful S-1-1-2
DemoFunction1 - StaticUseless test S-1-1does something useful S-1-1-3
+

3.1.2. Details for passed tests by Context block: Useless test S-1-2

+ +
DescribeContextName
DemoFunction1 - StaticUseless test S-1-2does something useless S-1-2-2
+

3.2. Details for passed tests by Describe block: DemoFunction2 - Static

3.2.1. Details for passed tests by Context block: Useless test S-2-1

+ + +
DescribeContextName
DemoFunction2 - StaticUseless test S-2-1does something useful S-2-1-1
DemoFunction2 - StaticUseless test S-2-1does something useful S-2-2-2
+

3.2.2. Details for passed tests by Context block: Useless test S-2-2

+ + +
DescribeContextName
DemoFunction2 - StaticUseless test S-2-2does something useless S-2-2-1
DemoFunction2 - StaticUseless test S-2-2does something useful S-2-2-3
diff --git a/examples/1.3.3/en-US/20160822b.txt b/examples/1.3.3/en-US/20160822b.txt new file mode 100644 index 0000000..2fe308a --- /dev/null +++ b/examples/1.3.3/en-US/20160822b.txt @@ -0,0 +1,114 @@ +Table of Contents +------------------------------------------------------------------------------------------------------------------------ +1. Results summary +2. Failed tests + 2.1. Details for failed tests by Describe block: DemoFunction1 - Static + 2.1.1. Details for failed tests by Context block: Useless test S-1-1 + 2.1.2. Details for failed tests by Context block: Useless test S-1-2 + 2.2. Details for failed tests by Describe block: DemoFunction2 - Static + 2.2.1. Details for failed tests by Context block: Useless test S-2-1 + 2.2.2. Details for failed tests by Context block: Useless test S-2-2 +3. Passed tests + 3.1. Details for passed tests by Describe block: DemoFunction1 - Static + 3.1.1. Details for passed tests by Context block: Useless test S-1-1 + 3.1.2. Details for passed tests by Context block: Useless test S-1-2 + 3.2. Details for passed tests by Describe block: DemoFunction2 - Static + 3.2.1. Details for passed tests by Context block: Useless test S-2-1 + 3.2.2. Details for passed tests by Context block: Useless test S-2-2 + + +1. Results summary +------------------------------------------------------------------------------------------------------------------------ + +Total Tests Passed Tests Failed Tests Skipped Tests Pending Tests +----------- ------------ ------------ ------------- ------------- + 12 7 5 0 0 + + +2. Failed tests +------------------------------------------------------------------------------------------------------------------------ + +2.1. Details for failed tests by Describe block: DemoFunction1 - Static +------------------------------------------------------------------------------------------------------------------------ + +2.1.1. Details for failed tests by Context block: Useless test S-1-1 +------------------------------------------------------------------------------------------------------------------------ + +Context Name Failure Message +------- ---- --------------- +Useless test S-1-1 does something useful S-1-1-1 Expected {5} to be less than {3} + + +2.1.2. Details for failed tests by Context block: Useless test S-1-2 +------------------------------------------------------------------------------------------------------------------------ + +Context Name Failure Message +------- ---- --------------- +Useless test S-1-2 does something useless S-1-2-1 Expected: {5} + But was: {6} +Useless test S-1-2 does something useful S-1-2-3 Expected: value was {2}, but should not have been the same + + +2.2. Details for failed tests by Describe block: DemoFunction2 - Static +------------------------------------------------------------------------------------------------------------------------ + +2.2.1. Details for failed tests by Context block: Useless test S-2-1 +------------------------------------------------------------------------------------------------------------------------ + +Context Name Failure Message +------- ---- --------------- +Useless test S-2-1 does something useful S-2-1-3 Expected: value was {56}, but should not have been the same + + +2.2.2. Details for failed tests by Context block: Useless test S-2-2 +------------------------------------------------------------------------------------------------------------------------ + +Context Name Failure Message +------- ---- --------------- +Useless test S-2-2 does something useless S-2-2-2 Expected {2} to be greater than {3} + + +3. Passed tests +------------------------------------------------------------------------------------------------------------------------ + +3.1. Details for passed tests by Describe block: DemoFunction1 - Static +------------------------------------------------------------------------------------------------------------------------ + +3.1.1. Details for passed tests by Context block: Useless test S-1-1 +------------------------------------------------------------------------------------------------------------------------ + +Describe Context Name +-------- ------- ---- +DemoFunction1 - Static Useless test S-1-1 does something useful S-1-1-2 +DemoFunction1 - Static Useless test S-1-1 does something useful S-1-1-3 + + +3.1.2. Details for passed tests by Context block: Useless test S-1-2 +------------------------------------------------------------------------------------------------------------------------ + +Describe Context Name +-------- ------- ---- +DemoFunction1 - Static Useless test S-1-2 does something useless S-1-2-2 + + +3.2. Details for passed tests by Describe block: DemoFunction2 - Static +------------------------------------------------------------------------------------------------------------------------ + +3.2.1. Details for passed tests by Context block: Useless test S-2-1 +------------------------------------------------------------------------------------------------------------------------ + +Describe Context Name +-------- ------- ---- +DemoFunction2 - Static Useless test S-2-1 does something useful S-2-1-1 +DemoFunction2 - Static Useless test S-2-1 does something useful S-2-2-2 + + +3.2.2. Details for passed tests by Context block: Useless test S-2-2 +------------------------------------------------------------------------------------------------------------------------ + +Describe Context Name +-------- ------- ---- +DemoFunction2 - Static Useless test S-2-2 does something useless S-2-2-1 +DemoFunction2 - Static Useless test S-2-2 does something useful S-2-2-3 + + diff --git a/examples/1.3.3/pl-PL/20160822a.docx b/examples/1.3.3/pl-PL/20160822a.docx new file mode 100644 index 0000000000000000000000000000000000000000..454665490f3470ca91776b48bb8a9e532f75bc5f GIT binary patch literal 44389 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 + +20160822a + +
+

Spis treści

+ + + + + + + + + + + +
1. Podsumowanie testów
2. Niezdane testy
   2.1. Szczegóły niezdanych testów dla bloku Describe: DemoFunction1 - Random
   2.2. Szczegóły niezdanych testów dla bloku Describe: DemoFunction1 - Static
   2.3. Szczegóły niezdanych testów dla bloku Describe: DemoFunction2 - Random
   2.4. Szczegóły niezdanych testów dla bloku Describe: DemoFunction2 - Static
3. Zdane testy
   3.1. Szczegóły zdanych testów dla bloku Describe: DemoFunction1 - Random
   3.2. Szczegóły zdanych testów dla bloku Describe: DemoFunction1 - Static
   3.3. Szczegóły zdanych testów dla bloku Describe: DemoFunction2 - Random
   3.4. Szczegóły zdanych testów dla bloku Describe: DemoFunction2 - Static
+

1. Podsumowanie testów

+ +
Testy ogółemTesty zdaneTesty niezdaneTesty pominięteTesty trwające
24131100
+

2. Niezdane testy

2.1. Szczegóły niezdanych testów dla bloku Describe: DemoFunction1 - Random

+ + + + +
ContextNazwaKomunikat niezdanego testu
Useless test R-1-1does something useful R-1-1-1Expected: {True} +But was: {0}
Useless test R-1-1does something useful R-1-1-3Expected {94} to be less than {23}
Useless test R-1-2does something useless R-1-2-1Expected: {30} +But was: {31}
Useless test R-1-2does something useful R-1-2-3Expected {74} to be less than {32}
+

2.2. Szczegóły niezdanych testów dla bloku Describe: DemoFunction1 - Static

+ + + +
ContextNazwaKomunikat niezdanego testu
Useless test S-1-1does something useful S-1-1-1Expected {5} to be less than {3}
Useless test S-1-2does something useless S-1-2-1Expected: {5} +But was: {6}
Useless test S-1-2does something useful S-1-2-3Expected: value was {2}, but should not have been the same
+

2.3. Szczegóły niezdanych testów dla bloku Describe: DemoFunction2 - Random

+ + +
ContextNazwaKomunikat niezdanego testu
Useless test R-2-1does something useful R-2-1-1Expected: {True} +But was: {0}
Useless test R-2-2does something useless R-2-2-1Expected: {30} +But was: {29}
+

2.4. Szczegóły niezdanych testów dla bloku Describe: DemoFunction2 - Static

+ + +
ContextNazwaKomunikat niezdanego testu
Useless test S-2-1does something useful S-2-1-3Expected: value was {56}, but should not have been the same
Useless test S-2-2does something useless S-2-2-2Expected {2} to be greater than {3}
+

3. Zdane testy

3.1. Szczegóły zdanych testów dla bloku Describe: DemoFunction1 - Random

+ + +
DescribeContextNazwa
DemoFunction1 - RandomUseless test R-1-1does something useful R-1-1-2
DemoFunction1 - RandomUseless test R-1-2does something useless R-1-2-2
+

3.2. Szczegóły zdanych testów dla bloku Describe: DemoFunction1 - Static

+ + + +
DescribeContextNazwa
DemoFunction1 - StaticUseless test S-1-1does something useful S-1-1-2
DemoFunction1 - StaticUseless test S-1-1does something useful S-1-1-3
DemoFunction1 - StaticUseless test S-1-2does something useless S-1-2-2
+

3.3. Szczegóły zdanych testów dla bloku Describe: DemoFunction2 - Random

+ + + + +
DescribeContextNazwa
DemoFunction2 - RandomUseless test R-2-1does something useful R-2-2-2
DemoFunction2 - RandomUseless test R-2-1does something useful R-2-1-3
DemoFunction2 - RandomUseless test R-2-2does something useless R-2-2-2
DemoFunction2 - RandomUseless test R-2-2does something useful R-2-2-3
+

3.4. Szczegóły zdanych testów dla bloku Describe: DemoFunction2 - Static

+ + + + +
DescribeContextNazwa
DemoFunction2 - StaticUseless test S-2-1does something useful S-2-1-1
DemoFunction2 - StaticUseless test S-2-1does something useful S-2-2-2
DemoFunction2 - StaticUseless test S-2-2does something useless S-2-2-1
DemoFunction2 - StaticUseless test S-2-2does something useful S-2-2-3
diff --git a/examples/1.3.3/pl-PL/20160822a.txt b/examples/1.3.3/pl-PL/20160822a.txt new file mode 100644 index 0000000..889b7fc --- /dev/null +++ b/examples/1.3.3/pl-PL/20160822a.txt @@ -0,0 +1,114 @@ +Spis tre?ci +------------------------------------------------------------------------------------------------------------------------ +1. Podsumowanie test?w +2. Niezdane testy + 2.1. Szczeg??y niezdanych test?w dla bloku Describe: DemoFunction1 - Random + 2.2. Szczeg??y niezdanych test?w dla bloku Describe: DemoFunction1 - Static + 2.3. Szczeg??y niezdanych test?w dla bloku Describe: DemoFunction2 - Random + 2.4. Szczeg??y niezdanych test?w dla bloku Describe: DemoFunction2 - Static +3. Zdane testy + 3.1. Szczeg??y zdanych test?w dla bloku Describe: DemoFunction1 - Random + 3.2. Szczeg??y zdanych test?w dla bloku Describe: DemoFunction1 - Static + 3.3. Szczeg??y zdanych test?w dla bloku Describe: DemoFunction2 - Random + 3.4. Szczeg??y zdanych test?w dla bloku Describe: DemoFunction2 - Static + + +1. Podsumowanie test?w +------------------------------------------------------------------------------------------------------------------------ + +Testy og??em Testy zdane Testy niezdane Testy pomini?te Testy trwaj?ce +------------ ----------- -------------- --------------- -------------- + 24 13 11 0 0 + + +2. Niezdane testy +------------------------------------------------------------------------------------------------------------------------ + +2.1. Szczeg??y niezdanych test?w dla bloku Describe: DemoFunction1 - Random +------------------------------------------------------------------------------------------------------------------------ + +Context Nazwa Komunikat niezdanego testu +------- ----- -------------------------- +Useless test R-1-1 does something useful R-1-1-1 Expected: {True} + But was: {0} +Useless test R-1-1 does something useful R-1-1-3 Expected {94} to be less than {23} +Useless test R-1-2 does something useless R-1-2-1 Expected: {30} + But was: {31} +Useless test R-1-2 does something useful R-1-2-3 Expected {74} to be less than {32} + + +2.2. Szczeg??y niezdanych test?w dla bloku Describe: DemoFunction1 - Static +------------------------------------------------------------------------------------------------------------------------ + +Context Nazwa Komunikat niezdanego testu +------- ----- -------------------------- +Useless test S-1-1 does something useful S-1-1-1 Expected {5} to be less than {3} +Useless test S-1-2 does something useless S-1-2-1 Expected: {5} + But was: {6} +Useless test S-1-2 does something useful S-1-2-3 Expected: value was {2}, but should not have been the same + + +2.3. Szczeg??y niezdanych test?w dla bloku Describe: DemoFunction2 - Random +------------------------------------------------------------------------------------------------------------------------ + +Context Nazwa Komunikat niezdanego testu +------- ----- -------------------------- +Useless test R-2-1 does something useful R-2-1-1 Expected: {True} + But was: {0} +Useless test R-2-2 does something useless R-2-2-1 Expected: {30} + But was: {29} + + +2.4. Szczeg??y niezdanych test?w dla bloku Describe: DemoFunction2 - Static +------------------------------------------------------------------------------------------------------------------------ + +Context Nazwa Komunikat niezdanego testu +------- ----- -------------------------- +Useless test S-2-1 does something useful S-2-1-3 Expected: value was {56}, but should not have been the same +Useless test S-2-2 does something useless S-2-2-2 Expected {2} to be greater than {3} + + +3. Zdane testy +------------------------------------------------------------------------------------------------------------------------ + +3.1. Szczeg??y zdanych test?w dla bloku Describe: DemoFunction1 - Random +------------------------------------------------------------------------------------------------------------------------ + +Describe Context Nazwa +-------- ------- ----- +DemoFunction1 - Random Useless test R-1-1 does something useful R-1-1-2 +DemoFunction1 - Random Useless test R-1-2 does something useless R-1-2-2 + + +3.2. Szczeg??y zdanych test?w dla bloku Describe: DemoFunction1 - Static +------------------------------------------------------------------------------------------------------------------------ + +Describe Context Nazwa +-------- ------- ----- +DemoFunction1 - Static Useless test S-1-1 does something useful S-1-1-2 +DemoFunction1 - Static Useless test S-1-1 does something useful S-1-1-3 +DemoFunction1 - Static Useless test S-1-2 does something useless S-1-2-2 + + +3.3. Szczeg??y zdanych test?w dla bloku Describe: DemoFunction2 - Random +------------------------------------------------------------------------------------------------------------------------ + +Describe Context Nazwa +-------- ------- ----- +DemoFunction2 - Random Useless test R-2-1 does something useful R-2-2-2 +DemoFunction2 - Random Useless test R-2-1 does something useful R-2-1-3 +DemoFunction2 - Random Useless test R-2-2 does something useless R-2-2-2 +DemoFunction2 - Random Useless test R-2-2 does something useful R-2-2-3 + + +3.4. Szczeg??y zdanych test?w dla bloku Describe: DemoFunction2 - Static +------------------------------------------------------------------------------------------------------------------------ + +Describe Context Nazwa +-------- ------- ----- +DemoFunction2 - Static Useless test S-2-1 does something useful S-2-1-1 +DemoFunction2 - Static Useless test S-2-1 does something useful S-2-2-2 +DemoFunction2 - Static Useless test S-2-2 does something useless S-2-2-1 +DemoFunction2 - Static Useless test S-2-2 does something useful S-2-2-3 + + diff --git a/examples/1.3.3/pl-PL/20160822b.docx b/examples/1.3.3/pl-PL/20160822b.docx new file mode 100644 index 0000000000000000000000000000000000000000..6445a88e1f5a982d0291924995be28ce79a1b13b GIT binary patch literal 39053 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 literal 0 HcmV?d00001 diff --git a/examples/1.3.3/pl-PL/20160822b.html b/examples/1.3.3/pl-PL/20160822b.html new file mode 100644 index 0000000..98943e8 --- /dev/null +++ b/examples/1.3.3/pl-PL/20160822b.html @@ -0,0 +1,80 @@ + + +20160822b + +
+

Spis treści

+ + + + + + + + + + + + + + + +
1. Podsumowanie testów
2. Niezdane testy
   2.1. Szczegóły niezdanych testów dla bloku Describe: DemoFunction1 - Static
      2.1.1. Szczegóły niezdanych testów dla bloku Context: Useless test S-1-1
      2.1.2. Szczegóły niezdanych testów dla bloku Context: Useless test S-1-2
   2.2. Szczegóły niezdanych testów dla bloku Describe: DemoFunction2 - Static
      2.2.1. Szczegóły niezdanych testów dla bloku Context: Useless test S-2-1
      2.2.2. Szczegóły niezdanych testów dla bloku Context: Useless test S-2-2
3. Zdane testy
   3.1. Szczegóły zdanych testów dla bloku Describe: DemoFunction1 - Static
      3.1.1. Szczegóły zdanych testów dla bloku Context: Useless test S-1-1
      3.1.2. Szczegóły zdanych testów dla bloku Context: Useless test S-1-2
   3.2. Szczegóły zdanych testów dla bloku Describe: DemoFunction2 - Static
      3.2.1. Szczegóły zdanych testów dla bloku Context: Useless test S-2-1
      3.2.2. Szczegóły zdanych testów dla bloku Context: Useless test S-2-2
+

1. Podsumowanie testów

+ +
Testy ogółemTesty zdaneTesty niezdaneTesty pominięteTesty trwające
127500
+

2. Niezdane testy

2.1. Szczegóły niezdanych testów dla bloku Describe: DemoFunction1 - Static

2.1.1. Szczegóły niezdanych testów dla bloku Context: Useless test S-1-1

+ +
ContextNazwaKomunikat niezdanego testu
Useless test S-1-1does something useful S-1-1-1Expected {5} to be less than {3}
+

2.1.2. Szczegóły niezdanych testów dla bloku Context: Useless test S-1-2

+ + +
ContextNazwaKomunikat niezdanego testu
Useless test S-1-2does something useless S-1-2-1Expected: {5} +But was: {6}
Useless test S-1-2does something useful S-1-2-3Expected: value was {2}, but should not have been the same
+

2.2. Szczegóły niezdanych testów dla bloku Describe: DemoFunction2 - Static

2.2.1. Szczegóły niezdanych testów dla bloku Context: Useless test S-2-1

+ +
ContextNazwaKomunikat niezdanego testu
Useless test S-2-1does something useful S-2-1-3Expected: value was {56}, but should not have been the same
+

2.2.2. Szczegóły niezdanych testów dla bloku Context: Useless test S-2-2

+ +
ContextNazwaKomunikat niezdanego testu
Useless test S-2-2does something useless S-2-2-2Expected {2} to be greater than {3}
+

3. Zdane testy

3.1. Szczegóły zdanych testów dla bloku Describe: DemoFunction1 - Static

3.1.1. Szczegóły zdanych testów dla bloku Context: Useless test S-1-1

+ + +
DescribeContextNazwa
DemoFunction1 - StaticUseless test S-1-1does something useful S-1-1-2
DemoFunction1 - StaticUseless test S-1-1does something useful S-1-1-3
+

3.1.2. Szczegóły zdanych testów dla bloku Context: Useless test S-1-2

+ +
DescribeContextNazwa
DemoFunction1 - StaticUseless test S-1-2does something useless S-1-2-2
+

3.2. Szczegóły zdanych testów dla bloku Describe: DemoFunction2 - Static

3.2.1. Szczegóły zdanych testów dla bloku Context: Useless test S-2-1

+ + +
DescribeContextNazwa
DemoFunction2 - StaticUseless test S-2-1does something useful S-2-1-1
DemoFunction2 - StaticUseless test S-2-1does something useful S-2-2-2
+

3.2.2. Szczegóły zdanych testów dla bloku Context: Useless test S-2-2

+ + +
DescribeContextNazwa
DemoFunction2 - StaticUseless test S-2-2does something useless S-2-2-1
DemoFunction2 - StaticUseless test S-2-2does something useful S-2-2-3
diff --git a/examples/1.3.3/pl-PL/20160822b.txt b/examples/1.3.3/pl-PL/20160822b.txt new file mode 100644 index 0000000..f17b2cf --- /dev/null +++ b/examples/1.3.3/pl-PL/20160822b.txt @@ -0,0 +1,114 @@ +Spis tre?ci +------------------------------------------------------------------------------------------------------------------------ +1. Podsumowanie test?w +2. Niezdane testy + 2.1. Szczeg??y niezdanych test?w dla bloku Describe: DemoFunction1 - Static + 2.1.1. Szczeg??y niezdanych test?w dla bloku Context: Useless test S-1-1 + 2.1.2. Szczeg??y niezdanych test?w dla bloku Context: Useless test S-1-2 + 2.2. Szczeg??y niezdanych test?w dla bloku Describe: DemoFunction2 - Static + 2.2.1. Szczeg??y niezdanych test?w dla bloku Context: Useless test S-2-1 + 2.2.2. Szczeg??y niezdanych test?w dla bloku Context: Useless test S-2-2 +3. Zdane testy + 3.1. Szczeg??y zdanych test?w dla bloku Describe: DemoFunction1 - Static + 3.1.1. Szczeg??y zdanych test?w dla bloku Context: Useless test S-1-1 + 3.1.2. Szczeg??y zdanych test?w dla bloku Context: Useless test S-1-2 + 3.2. Szczeg??y zdanych test?w dla bloku Describe: DemoFunction2 - Static + 3.2.1. Szczeg??y zdanych test?w dla bloku Context: Useless test S-2-1 + 3.2.2. Szczeg??y zdanych test?w dla bloku Context: Useless test S-2-2 + + +1. Podsumowanie test?w +------------------------------------------------------------------------------------------------------------------------ + +Testy og??em Testy zdane Testy niezdane Testy pomini?te Testy trwaj?ce +------------ ----------- -------------- --------------- -------------- + 12 7 5 0 0 + + +2. Niezdane testy +------------------------------------------------------------------------------------------------------------------------ + +2.1. Szczeg??y niezdanych test?w dla bloku Describe: DemoFunction1 - Static +------------------------------------------------------------------------------------------------------------------------ + +2.1.1. Szczeg??y niezdanych test?w dla bloku Context: Useless test S-1-1 +------------------------------------------------------------------------------------------------------------------------ + +Context Nazwa Komunikat niezdanego testu +------- ----- -------------------------- +Useless test S-1-1 does something useful S-1-1-1 Expected {5} to be less than {3} + + +2.1.2. Szczeg??y niezdanych test?w dla bloku Context: Useless test S-1-2 +------------------------------------------------------------------------------------------------------------------------ + +Context Nazwa Komunikat niezdanego testu +------- ----- -------------------------- +Useless test S-1-2 does something useless S-1-2-1 Expected: {5} + But was: {6} +Useless test S-1-2 does something useful S-1-2-3 Expected: value was {2}, but should not have been the same + + +2.2. Szczeg??y niezdanych test?w dla bloku Describe: DemoFunction2 - Static +------------------------------------------------------------------------------------------------------------------------ + +2.2.1. Szczeg??y niezdanych test?w dla bloku Context: Useless test S-2-1 +------------------------------------------------------------------------------------------------------------------------ + +Context Nazwa Komunikat niezdanego testu +------- ----- -------------------------- +Useless test S-2-1 does something useful S-2-1-3 Expected: value was {56}, but should not have been the same + + +2.2.2. Szczeg??y niezdanych test?w dla bloku Context: Useless test S-2-2 +------------------------------------------------------------------------------------------------------------------------ + +Context Nazwa Komunikat niezdanego testu +------- ----- -------------------------- +Useless test S-2-2 does something useless S-2-2-2 Expected {2} to be greater than {3} + + +3. Zdane testy +------------------------------------------------------------------------------------------------------------------------ + +3.1. Szczeg??y zdanych test?w dla bloku Describe: DemoFunction1 - Static +------------------------------------------------------------------------------------------------------------------------ + +3.1.1. Szczeg??y zdanych test?w dla bloku Context: Useless test S-1-1 +------------------------------------------------------------------------------------------------------------------------ + +Describe Context Nazwa +-------- ------- ----- +DemoFunction1 - Static Useless test S-1-1 does something useful S-1-1-2 +DemoFunction1 - Static Useless test S-1-1 does something useful S-1-1-3 + + +3.1.2. Szczeg??y zdanych test?w dla bloku Context: Useless test S-1-2 +------------------------------------------------------------------------------------------------------------------------ + +Describe Context Nazwa +-------- ------- ----- +DemoFunction1 - Static Useless test S-1-2 does something useless S-1-2-2 + + +3.2. Szczeg??y zdanych test?w dla bloku Describe: DemoFunction2 - Static +------------------------------------------------------------------------------------------------------------------------ + +3.2.1. Szczeg??y zdanych test?w dla bloku Context: Useless test S-2-1 +------------------------------------------------------------------------------------------------------------------------ + +Describe Context Nazwa +-------- ------- ----- +DemoFunction2 - Static Useless test S-2-1 does something useful S-2-1-1 +DemoFunction2 - Static Useless test S-2-1 does something useful S-2-2-2 + + +3.2.2. Szczeg??y zdanych test?w dla bloku Context: Useless test S-2-2 +------------------------------------------------------------------------------------------------------------------------ + +Describe Context Nazwa +-------- ------- ----- +DemoFunction2 - Static Useless test S-2-2 does something useless S-2-2-1 +DemoFunction2 - Static Useless test S-2-2 does something useful S-2-2-3 + +