Overview
Comment: | s_expressions-conditionals-tests: new package gather all tests on conditionals |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
64a3496a282373705ecb5750408f45c1 |
User & Date: | nat on 2015-04-02 21:49:29 |
Other Links: | manifest | tags |
Context
2015-04-03
| ||
21:35 | static_maps-s_expressions-conditionals: add missing package in previous commits check-in: 6078a77bb3 user: nat tags: trunk | |
2015-04-02
| ||
21:49 | s_expressions-conditionals-tests: new package gather all tests on conditionals check-in: 64a3496a28 user: nat tags: trunk | |
2015-04-01
| ||
21:16 | s_expressions-conditionals-strings-tests: new package providing a fully covering test suite for string conditionals check-in: 2b39e14775 user: nat tags: trunk | |
Changes
Added tests/natools-s_expressions-conditionals-tests.adb version [6c4fac262d].
|
Added tests/natools-s_expressions-conditionals-tests.ads version [280331b5f0].
|
Modified tests/test_all.adb from [094996cdd1] to [dfe547ea27].
︙ | |||
25 26 27 28 29 30 31 32 33 34 35 36 37 38 | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | + | with Natools.Cron.Tests; with Natools.Getopt_Long_Tests; with Natools.HMAC_Tests; with Natools.Reference_Tests; with Natools.Reference_Tests.Pools; with Natools.S_Expressions.Atom_Buffers.Tests; with Natools.S_Expressions.Cache_Tests; with Natools.S_Expressions.Conditionals.Tests; with Natools.S_Expressions.Dynamic_Interpreter_Tests; with Natools.S_Expressions.Encodings.Tests; with Natools.S_Expressions.File_RW_Tests; with Natools.S_Expressions.Interpreter_Tests; with Natools.S_Expressions.Lockable.Tests; with Natools.S_Expressions.Parsers.Tests; with Natools.S_Expressions.Printers.Tests; |
︙ | |||
108 109 110 111 112 113 114 115 116 117 118 119 120 121 | 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | + + + + | Report.Section ("S_Expressions.Atom_Buffers"); Natools.S_Expressions.Atom_Buffers.Tests.All_Tests (Report); Report.End_Section; Report.Section ("S_Expressions.Caches"); Natools.S_Expressions.Cache_Tests.All_Tests (Report); Report.End_Section; Report.Section ("S_Expressions.Conditionals"); Natools.S_Expressions.Conditionals.Tests.All_Tests (Report); Report.End_Section; Report.Section ("S_Expressions.Dynamic_Interpreters"); Natools.S_Expressions.Dynamic_Interpreter_Tests.All_Tests (Report); Report.End_Section; Report.Section ("S_Expressions.Encodings"); Natools.S_Expressions.Encodings.Tests.All_Tests (Report); |
︙ |