@@ -9,13 +9,13 @@ Summary:
9
9
| Language | Available file extensions | Pattern to detect test files | How to specify attributes | Features (verify / bundle / doc) | Example file |
10
10
| ---| ---| ---| ---| ---| ---|
11
11
| C++ | ` .cpp ` ` .hpp ` | ` .test.cpp ` | ` #define [KEY] [VALUE] ` | :heavy_check_mark : / :heavy_check_mark : / :heavy_check_mark : | [ segment_tree.range_sum_query.test.cpp] ( https://github.com/online-judge-tools/verification-helper/blob/master/examples/segment_tree.range_sum_query.test.cpp ) |
12
- | C# script | ` .csx ` | ` .test.csx ` | ` #pragma [KEY] [VALUE]` | :heavy_check_mark : / :x : / :warning : | [ segment_tree.range_sum_query.test.csx] ( https://github.com/online-judge-tools/verification-helper/blob/master/examples/csharpscript/segment_tree.range_sum_query.test.csx ) |
13
- | Nim | ` .nim ` | ` _test.nim ` | ` # verification-helper: [KEY] [VALUE] ` | :heavy_check_mark : / :x : / :warning : | [ union_find_tree_yosupo_test.nim] ( https://github.com/kmyk /online-judge-tools/verification-helper/blob/master/examples/nim/union_find_tree_yosupo_test.nim ) |
14
- | Python | ` .py ` | ` .test.py ` | ` # verification-helper: [KEY] [VALUE] ` | :heavy_check_mark : / :x : / :warning : | [ union_find_yosupo.test.py] ( https://github.com/online-judge-tools/verification-helper/blob/master/examples/python/union_find_yosupo.test.py ) |
12
+ | C# script | ` .csx ` | ` .test.csx ` | ` // verification-helper: [KEY] [VALUE]` | :heavy_check_mark : / :x : / :heavy_check_mark : | [ segment_tree.range_sum_query.test.csx] ( https://github.com/online-judge-tools/verification-helper/blob/master/examples/csharpscript/segment_tree.range_sum_query.test.csx ) |
13
+ | Nim | ` .nim ` | ` _test.nim ` | ` # verification-helper: [KEY] [VALUE] ` | :heavy_check_mark : / :x : / :heavy_check_mark : | [ union_find_tree_yosupo_test.nim] ( https://github.com/online-judge-tools/verification-helper/blob/master/examples/nim/union_find_tree_yosupo_test.nim ) |
14
+ | Python 3 | ` .py ` | ` .test.py ` | ` # verification-helper: [KEY] [VALUE] ` | :heavy_check_mark : / :x : / :heavy_check_mark : | [ union_find_yosupo.test.py] ( https://github.com/online-judge-tools/verification-helper/blob/master/examples/python/union_find_yosupo.test.py ) |
15
15
| Haskell | ` .hs ` | ` .test.hs ` | ` {- verification-helper: [KEY] [VALUE] ` (newline) ` -} ` | :heavy_check_mark : / :x : / :warning : | [ HelloWorld.test.py] ( https://github.com/online-judge-tools/verification-helper/blob/master/Examples2/Haskell/HelloWorld.test.hs ) |
16
16
| Ruby | ` .rb ` | ` .test.rb ` | ` # verification-helper: [KEY] [VALUE] ` | :heavy_check_mark : / :x : / :warning : | [ hello_world.test.rb] ( https://github.com/online-judge-tools/verification-helper/blob/master/examples/ruby/hello_world.test.rb ) |
17
17
| Go | ` .go ` | ` .test.go ` | ` // verification-helper: [KEY] [VALUE] ` | :heavy_check_mark : / :x : / :warning : | [ helloworld.test.go] ( https://github.com/online-judge-tools/verification-helper/blob/master/examples/go/helloworld.test.go ) |
18
- | Java | ` .java ` | ` _test.java ` | ` // verification-helper: [KEY] [VALUE] ` | :heavy_check_mark : / :x : / :warning : | [ HelloWorld_test.go ] ( https://github.com/online-judge-tools/verification-helper/blob/master/examples/java/HelloWorld_test.java ) |
18
+ | Java | ` .java ` | ` _test.java ` | ` // verification-helper: [KEY] [VALUE] ` | :heavy_check_mark : / :x : / :warning : | [ HelloWorld_test.java ] ( https://github.com/online-judge-tools/verification-helper/blob/master/examples/java/HelloWorld_test.java ) |
19
19
20
20
### Settings for C++
21
21
0 commit comments