package webtest

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type test_fun = unit -> unit

A synchronous test function.

val bracket : (unit -> 'a) -> ('a -> unit) -> ('a -> unit) -> test_fun

bracket setup test teardown generates a test_fun which will use setup to create state needed for the test, then pass that state to test, and finally will pass that state to teardown.