File: bitstring_tests.ml

package info (click to toggle)
ocaml-bitstring 5.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 908 kB
  • sloc: ml: 3,817; ansic: 136; makefile: 3
file content (11 lines) | stat: -rw-r--r-- 245 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
open OUnit2

let () =
  [
    BitstringLegacyTest.suite;
    BitstringParserTest.suite;
    BitstringConstructorTest.suite;
    BitstringQualifierTest.suite;
    BitstringLetStarSyntaxTest.suite;
  ]
  |> List.iter (fun t -> run_test_tt_main t)