Sha256: 6cceef01e3c8c0c1b125a49ddcd74d02bf31178d05c8be7b808a027bda044dd5

Contents?: true

Size: 659 Bytes

Versions: 149

Compression:

Stored size: 659 Bytes

Contents

open Core
open OUnit2
open Minesweeper

let format_board strings =
  let width = match strings with
    | [] -> 0
    | (s::_) -> String.length s in
  let border_line = "+" ^ String.make width '-' ^ "+\n" in
  let line s = "|" ^ s ^ "|\n" in
  "\n" ^ border_line ^ String.concat (List.map strings ~f:line) ^ border_line

(* Assert Equals *)
let ae exp got =
  assert_equal exp got ~cmp:(List.equal ~equal:String.equal) ~printer:format_board

let tests = [
(* TEST
  "$description" >:: (fun _ ->
    let b = $input in
    let expected = $expected in
    ae expected (annotate b)
  );
END TEST *)
]

let () =
  run_test_tt_main ("minesweeper tests" >::: tests)

Version data entries

149 entries across 149 versions & 1 rubygems

Version Path
trackler-2.2.1.48 tracks/ocaml/tools/test-generator/templates/ocaml/minesweeper/test.ml
trackler-2.2.1.47 tracks/ocaml/tools/test-generator/templates/ocaml/minesweeper/test.ml
trackler-2.2.1.46 tracks/ocaml/tools/test-generator/templates/ocaml/minesweeper/test.ml
trackler-2.2.1.45 tracks/ocaml/tools/test-generator/templates/ocaml/minesweeper/test.ml
trackler-2.2.1.44 tracks/ocaml/tools/test-generator/templates/ocaml/minesweeper/test.ml
trackler-2.2.1.43 tracks/ocaml/tools/test-generator/templates/ocaml/minesweeper/test.ml
trackler-2.2.1.42 tracks/ocaml/tools/test-generator/templates/ocaml/minesweeper/test.ml
trackler-2.2.1.41 tracks/ocaml/tools/test-generator/templates/ocaml/minesweeper/test.ml
trackler-2.2.1.40 tracks/ocaml/tools/test-generator/templates/ocaml/minesweeper/test.ml
trackler-2.2.1.39 tracks/ocaml/tools/test-generator/templates/ocaml/minesweeper/test.ml
trackler-2.2.1.38 tracks/ocaml/tools/test-generator/templates/ocaml/minesweeper/test.ml
trackler-2.2.1.37 tracks/ocaml/tools/test-generator/templates/ocaml/minesweeper/test.ml
trackler-2.2.1.36 tracks/ocaml/tools/test-generator/templates/ocaml/minesweeper/test.ml
trackler-2.2.1.35 tracks/ocaml/tools/test-generator/templates/ocaml/minesweeper/test.ml
trackler-2.2.1.34 tracks/ocaml/tools/test-generator/templates/ocaml/minesweeper/test.ml
trackler-2.2.1.33 tracks/ocaml/tools/test-generator/templates/ocaml/minesweeper/test.ml
trackler-2.2.1.32 tracks/ocaml/tools/test-generator/templates/ocaml/minesweeper/test.ml
trackler-2.2.1.31 tracks/ocaml/tools/test-generator/templates/ocaml/minesweeper/test.ml
trackler-2.2.1.30 tracks/ocaml/tools/test-generator/templates/ocaml/minesweeper/test.ml
trackler-2.2.1.29 tracks/ocaml/tools/test-generator/templates/ocaml/minesweeper/test.ml