package alcotest

  1. Overview
  2. Docs
On This Page
  1. Display
Legend:
Library
Module
Module type
Parameter
Class
Class type

A lightweight and colourful test framework, based on OUnit.

type speed_level = [
  1. | `Quick
  2. | `Slow
]

Speed level for a test.

type test_case = string * speed_level * (unit -> unit)

A test case is a documentation string, a speed level as well as an anyonymous function.

type test = string * test_case list

A test has a name and contains a list of test cases

val run : string -> test list -> unit

Run a test suite. The first argument is the name of the tested lib.

Display

val line : Pervasives.out_channel -> ?color:[ `Blue | `Yellow ] -> char -> unit

Draw a line on the given channel

OCaml

Innovation. Community. Security.