2
2
< html >
3
3
< head >
4
4
< title > A Scheme API for test suites</ title >
5
- < link href ="/admin.css " rel ="stylesheet ">
6
- < link href ="/list.css " rel ="stylesheet ">
7
- < link href ="/favicon.png " rel ="icon " sizes ="192x192 " type ="image/png ">
5
+ < link href ="../srfi-common /admin.css " rel ="stylesheet ">
6
+ < link href ="../srfi-common /list.css " rel ="stylesheet ">
7
+ < link href ="../srfi-common /favicon.png " rel ="icon " sizes ="192x192 " type ="image/png ">
8
8
< meta charset ="utf-8 " />
9
9
< meta name ="viewport " content ="width=device-width, initial-scale=1 " />
10
+ < script type ="text/x-mathjax-config ">
11
+ MathJax . Hub . Config ( {
12
+ tex2jax : { inlineMath : [ [ '$' , '$' ] , [ '\\(' , '\\)' ] ] }
13
+ } ) ;
14
+ </ script >
15
+ < script crossorigin ="anonymous " integrity =
16
+ "sha384-Ra6zh6uYMmH5ydwCqqMoykyf1T/+ZcnOQfFPhDrp2kI4OIxadnhsvvA2vv9A7xYv " src =
17
+ "https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML "
18
+ type ="text/javascript "> </ script >
10
19
</ head >
11
20
12
21
< body >
@@ -62,4 +71,11 @@ <h1>SRFI 64: A Scheme API for test suites</h1>
62
71
value ="unsubscribe " >
63
72
< input name ="list "
64
73
type ="hidden "
65
- value ="
[email protected] "
> </ form > </ li > </ ul > </ body > </ html >
74
+ value ="
[email protected] "
> </ form > </ li > </ ul >
75
+ < h2 > Abstract</ h2 > < p > This defines an API for writing < dfn > test
76
+ suites</ dfn > , to make it easy to portably test Scheme APIs, libraries,
77
+ applications, and implementations. A test suite is a collection of
78
+ < dfn > test cases</ dfn > that execute in the context of a
79
+ < dfn > test-runner</ dfn > . This specifications also supports writing new
80
+ test-runners, to allow customization of reporting and processing the
81
+ result of running test suites.</ body > </ html >
0 commit comments