-
Notifications
You must be signed in to change notification settings - Fork 0
/
unit.html
88 lines (80 loc) · 3.03 KB
/
unit.html
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<title>Huahin Framework</title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
<meta http-equiv="Content-Style-Type" content="text/css">
<link href="style.css" rel="stylesheet" type="text/css">
<head>
<body>
<div id="page">
<div id="head">
<h1><a href="/"><img src="img/huahin.png" alt="Huahin Framework"></a></h1>
</div>
<!-- menu -->
<div id="menu">
<ul>
<li><a href="/">TOP</a></li>
<li><a href="core.html">Core</a></li>
<li><div id="currentmenu">Unit</div></li>
<li><a href="manager.html">Manager</a></li>
<li><a href="emanager.html">EManager</a></li>
<li><a href="tools.html">Tools</a></li>
<li><a href="examples.html">Examples</a></li>
</ul>
</div>
<!-- submenu -->
<div id="submenu">
<ul>
<li><a href="/huahin-unit/">Huahin Unit</a></li>
<li><a href="/unit/docs/0.1.7/api/">API</a></li>
</ul>
</div>
<!-- main -->
<div id="main">
<!-- Huahin Unit -->
<h2>Huahin Unit</h2>
<p>Huahin Unit is a test driver to test the Huahin Core.
Driver is based on JUnit (system v4) and the MRUnit, has become a test driver that specializes in Huahin Core,
you can do a simple test than using a normal MRUnit.
Are classified into three drivers also Huahin Unit.</p>
<ul>
<li>JobDriver: Driver to test the SimpleJobTool.</li>
<li>FilterDriver: Driver to test the Filter.</li>
<li>SummarizerDriver: Driver to test the SummarizerDriver.</li>
</ul>
<p>
For more information, see the following site.
<ul>
<li><a href="/huahin-unit/">Huahin Unit</a></li>
<li><a href="/unit/docs/0.1.7/api/">API</a></li>
</ul>
</p>
</div>
<!-- footer -->
<div id="foot">
<div class="tex">
<p>Copyright © 2012 -
<script type="text/javascript">
var date = new Date();
document.write(date.getFullYear());
</script>
huahinframework.org
</p>
<p>Contact <a href="mailto:huahin-framework@googlegroups.com">huahin-framework@googlegroups.com</a> and we’ll help you sort it out.</p>
</div>
</div>
</div>
<!-- google analytics -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-32923864-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>