diff options
author | Christoph Jentzsch <jentzsch.software@gmail.com> | 2014-11-03 20:22:15 +0800 |
---|---|---|
committer | Christoph Jentzsch <jentzsch.software@gmail.com> | 2014-11-03 20:22:15 +0800 |
commit | 3930ca3a9a377107d5792b3e7202f79c688f1a67 (patch) | |
tree | 1f8944ce9c4964483539abe1ce2a40f5ec3e19be /TrieTests/trietestnextprev.json | |
parent | 014d370b5d5d0a807cc31a2fc3a8c5313ccd7ea4 (diff) | |
download | go-tangerine-3930ca3a9a377107d5792b3e7202f79c688f1a67.tar go-tangerine-3930ca3a9a377107d5792b3e7202f79c688f1a67.tar.gz go-tangerine-3930ca3a9a377107d5792b3e7202f79c688f1a67.tar.bz2 go-tangerine-3930ca3a9a377107d5792b3e7202f79c688f1a67.tar.lz go-tangerine-3930ca3a9a377107d5792b3e7202f79c688f1a67.tar.xz go-tangerine-3930ca3a9a377107d5792b3e7202f79c688f1a67.tar.zst go-tangerine-3930ca3a9a377107d5792b3e7202f79c688f1a67.zip |
Restructered tests in folders in accordance to test suites
Diffstat (limited to 'TrieTests/trietestnextprev.json')
-rw-r--r-- | TrieTests/trietestnextprev.json | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/TrieTests/trietestnextprev.json b/TrieTests/trietestnextprev.json new file mode 100644 index 000000000..f2ad924e3 --- /dev/null +++ b/TrieTests/trietestnextprev.json @@ -0,0 +1,19 @@ +{ + "basic": { + "in": [ "cat", "doge", "wallace" ], + "tests": [ + [ "", "", "cat" ], + [ "bobo", "", "cat" ], + [ "c", "", "cat" ], + [ "car", "", "cat" ], + [ "cat", "", "doge" ], + [ "catering", "cat", "doge" ], + [ "d", "cat", "doge" ], + [ "doge", "cat", "wallace" ], + [ "dogerton", "doge", "wallace" ], + [ "w", "doge", "wallace" ], + [ "wallace", "doge", "" ], + [ "wallace123", "wallace", ""] + ] + } +} |