-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathREADME.txt
65 lines (43 loc) · 1.44 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
SMLUnit
@author YAMATODANI Kiyoshi
@version $Id: README.txt,v 1.5 2007/04/12 05:51:16 kiyoshiy Exp $
SMLUnit is a unit testing framework for Standard ML.
SMLUnit is a simple framework and its specification is similar to HUnit,
OUnit, JUnit and other xUnit frameworks.
This software has been developed as a part of the SML# project.
It is distributed under the BSD-style SMLSharp license, which is
included in the file LICENSE in this directory.
For the details of SML# project, consult the web page at:
http://www.pllab.riec.tohoku.ac.jp/smlsharp/
========================================
Files/Directories
src/
source files of SMLUnit
sources.{sml,cm,mlb}
loader scripts for SML#, SML/NJ and MLton.
doc/
documents
doc/api/
SMLUnit API documents in HTML format
example/
simple dictionary module and test cases for this module.
========================================
Usage
Loader scripts are provided for SML#, SML/NJ and MLton.
SML#:
smlunit-lib.sml
SML/NJ:
smlunit-lib.cm
MLton:
smlunit-lib.mlb
To use the SMLUnit in your project, add reference to these files in your
project files.
========================================
References
JUnit (Unit testing framework for Java)
http://www.junit.org/index.htm
OUnit
http://home.wanadoo.nl/maas/ocaml/
HUnit (Unit testing framework for Haskell)
http://hunit.sourceforge.net/
===============================================================================