diff options
Diffstat (limited to 'tests/tests.nim')
-rw-r--r-- | tests/tests.nim | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/tests/tests.nim b/tests/tests.nim new file mode 100644 index 0000000..23b6e1c --- /dev/null +++ b/tests/tests.nim | |||
@@ -0,0 +1,42 @@ | |||
1 | # gzip-like LZSS compressor | ||
2 | # Copyright (C) 2018 Pacien TRAN-GIRARD | ||
3 | # | ||
4 | # This program is free software: you can redistribute it and/or modify | ||
5 | # it under the terms of the GNU Affero General Public License as | ||
6 | # published by the Free Software Foundation, either version 3 of the | ||
7 | # License, or (at your option) any later version. | ||
8 | # | ||
9 | # This program is distributed in the hope that it will be useful, | ||
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | # GNU Affero General Public License for more details. | ||
13 | # | ||
14 | # You should have received a copy of the GNU Affero General Public License | ||
15 | # along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
16 | |||
17 | import | ||
18 | bitio/tintegers, | ||
19 | bitio/tbitreader, | ||
20 | bitio/tbitwriter, | ||
21 | |||
22 | huffman/thuffmantree, | ||
23 | huffman/thuffmantreebuilder, | ||
24 | huffman/thuffmanencoder, | ||
25 | huffman/thuffmandecoder, | ||
26 | |||
27 | lzss/tmatchring, | ||
28 | lzss/tmatchtable, | ||
29 | lzss/tlzssnode, | ||
30 | lzss/tlzsschain, | ||
31 | lzss/tlzssencoder, | ||
32 | |||
33 | lzsshuffman/tlzsshuffmansymbol, | ||
34 | lzsshuffman/tlzsshuffmanstats, | ||
35 | lzsshuffman/tlzsshuffmanencoder, | ||
36 | lzsshuffman/tlzsshuffmandecoder, | ||
37 | |||
38 | blocks/trawblock, | ||
39 | # TODO: add lzssblock test | ||
40 | blocks/streamblock, | ||
41 | |||
42 | gziplike/tgziplike | ||