Overview
Comment: | s_expressions-enumeration_io-tests: new test suite for S-expression I/O for enumeration values |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
ef378b362420ff5d479229a0527ef8b7 |
User & Date: | nat on 2015-05-13 17:46:23 |
Other Links: | manifest | tags |
Context
2015-06-24
| ||
18:20 | s_expressions-templates-dates: add a new command to override the time zone check-in: 0bd7339369 user: nat tags: trunk | |
2015-05-13
| ||
17:46 | s_expressions-enumeration_io-tests: new test suite for S-expression I/O for enumeration values check-in: ef378b3624 user: nat tags: trunk | |
2015-05-12
| ||
20:52 | s_expressions-enumeration_io; new package providing tools to help I/O of enumerations in S-expressions check-in: dd030195a1 user: nat tags: trunk | |
Changes
Added tests/natools-s_expressions-enumeration_io-tests.adb version [d5e4658c45].
|
Added tests/natools-s_expressions-enumeration_io-tests.ads version [09ddadd74c].
|
Modified tests/test_all.adb from [dfe547ea27] to [c6f080431e].
︙ | |||
28 29 30 31 32 33 34 35 36 37 38 39 40 41 | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | + | 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.Enumeration_IO.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; with Natools.S_Expressions.Printers.Pretty.Tests; with Natools.S_Expressions.Printers.Pretty.Config.Tests; |
︙ | |||
121 122 123 124 125 126 127 128 129 130 131 132 133 134 | 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 | + + + + | 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); Report.End_Section; Report.Section ("S_Expressions.Enumeration_IO"); Natools.S_Expressions.Enumeration_IO.Tests.All_Tests (Report); Report.End_Section; Report.Section ("S_Expressions.File_Readers and File_Writers"); Natools.S_Expressions.File_RW_Tests.All_Tests (Report); Report.End_Section; Report.Section ("S_Expressions.Interpreters"); Natools.S_Expressions.Interpreter_Tests.All_Tests (Report); |
︙ |