2016-10-12 17:00:19 +04:00
|
|
|
(**************************************************************************)
|
|
|
|
(* *)
|
2018-02-06 00:17:03 +04:00
|
|
|
(* Copyright (c) 2014 - 2018. *)
|
2016-10-12 17:00:19 +04:00
|
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
|
|
(* *)
|
|
|
|
(**************************************************************************)
|
|
|
|
|
2018-02-12 01:36:49 +04:00
|
|
|
let () =
|
|
|
|
Random.init 100 ;
|
|
|
|
Alcotest.run "tezos-data-encoding" [
|
2018-05-13 22:20:20 +04:00
|
|
|
"success", Success.tests ;
|
|
|
|
"invalid_encoding", Invalid_encoding.tests ;
|
|
|
|
"read_failure", Read_failure.tests ;
|
|
|
|
"write_failure", Write_failure.tests ;
|
|
|
|
"randomized", Randomized.tests ;
|
2018-02-12 01:36:49 +04:00
|
|
|
]
|