~ubuntu-branches/debian/squeeze/erlang/squeeze

« back to all changes in this revision

Viewing changes to lib/eunit/doc/eunit_surefire.html

  • Committer: Bazaar Package Importer
  • Author(s): Sergei Golovan
  • Date: 2009-05-07 15:07:37 UTC
  • mfrom: (1.2.1 upstream) (5.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090507150737-i4yb5elwinm7r0hc
Tags: 1:13.b-dfsg1-1
* Removed another bunch of non-free RFCs from original tarball
  (closes: #527053).
* Fixed build-dependencies list by adding missing comma. This requires
  libsctp-dev again. Also, added libsctp1 dependency to erlang-base and
  erlang-base-hipe packages because the shared library is loaded via
  dlopen now and cannot be added using dh_slibdeps (closes: #526682).
* Weakened dependency of erlang-webtool on erlang-observer to recommends
  to avoid circular dependencies (closes: #526627).
* Added solaris-i386 to HiPE enabled architectures.
* Made script sources in /usr/lib/erlang/erts-*/bin directory executable,
  which is more convenient if a user wants to create a target Erlang system.
* Shortened extended description line for erlang-dev package to make it
  fit 80x25 terminals.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
 
2
<html>
 
3
<head>
 
4
<title>Module eunit_surefire</title>
 
5
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="EDoc">
 
6
</head>
 
7
<body bgcolor="white">
 
8
<div class="navbar"><a name="#navbar_top"></a><table width="100%" border="0" cellspacing="0" cellpadding="2" summary="navigation bar"><tr><td><a href="overview-summary.html" target="overviewFrame">Overview</a></td><td><a href="http://www.erlang.org/"><img src="erlang.png" align="right" border="0" alt="erlang logo"></a></td></tr></table></div>
 
9
<hr>
 
10
 
 
11
<h1>Module eunit_surefire</h1>
 
12
<ul class="index"><li><a href="#description">Description</a></li><li><a href="#index">Function Index</a></li><li><a href="#functions">Function Details</a></li></ul>Surefire reports for EUnit (Format used by Maven and Atlassian  
 
13
Bamboo for example to integrate test results).
 
14
<p>Copyright � 2009 Micka�l R�mond, Paul Guyot</p>
 
15
 
 
16
<p><b>Behaviours:</b> <a href="eunit_listener.html"><tt>eunit_listener</tt></a>.</p>
 
17
<p><b>Authors:</b> Micka�l R�mond (<a href="mailto:mremond@process-one.net"><tt>mremond@process-one.net</tt></a>).</p>
 
18
<p><b>See also:</b> <a href="eunit.html">eunit</a>.</p>
 
19
 
 
20
<h2><a name="description">Description</a></h2><p>Surefire reports for EUnit (Format used by Maven and Atlassian  
 
21
Bamboo for example to integrate test results). Based on initial code  
 
22
from Paul Guyot.</p>
 
23
 
 
24
  Example: Generate XML result file in the current directory:
 
25
  <pre>     eunit:test([fib, eunit_examples],
 
26
                [{report,{eunit_surefire,[{dir,"."}]}}]).</pre>
 
27
<h2><a name="index">Function Index</a></h2>
 
28
<table width="100%" border="1" cellspacing="0" cellpadding="2" summary="function index"><tr><td valign="top"><a href="#handle_begin-3">handle_begin/3</a></td><td></td></tr>
 
29
<tr><td valign="top"><a href="#handle_cancel-3">handle_cancel/3</a></td><td></td></tr>
 
30
<tr><td valign="top"><a href="#handle_end-3">handle_end/3</a></td><td></td></tr>
 
31
<tr><td valign="top"><a href="#init-1">init/1</a></td><td></td></tr>
 
32
<tr><td valign="top"><a href="#start-0">start/0</a></td><td></td></tr>
 
33
<tr><td valign="top"><a href="#start-1">start/1</a></td><td></td></tr>
 
34
<tr><td valign="top"><a href="#terminate-2">terminate/2</a></td><td></td></tr>
 
35
</table>
 
36
 
 
37
<h2><a name="functions">Function Details</a></h2>
 
38
 
 
39
<h3 class="function"><a name="handle_begin-3">handle_begin/3</a></h3>
 
40
<div class="spec">
 
41
<p><tt>handle_begin(X1, Data, St) -&gt; any()</tt></p>
 
42
</div>
 
43
 
 
44
<h3 class="function"><a name="handle_cancel-3">handle_cancel/3</a></h3>
 
45
<div class="spec">
 
46
<p><tt>handle_cancel(X1, Data, St) -&gt; any()</tt></p>
 
47
</div>
 
48
 
 
49
<h3 class="function"><a name="handle_end-3">handle_end/3</a></h3>
 
50
<div class="spec">
 
51
<p><tt>handle_end(X1, Data, St) -&gt; any()</tt></p>
 
52
</div>
 
53
 
 
54
<h3 class="function"><a name="init-1">init/1</a></h3>
 
55
<div class="spec">
 
56
<p><tt>init(Options) -&gt; any()</tt></p>
 
57
</div>
 
58
 
 
59
<h3 class="function"><a name="start-0">start/0</a></h3>
 
60
<div class="spec">
 
61
<p><tt>start() -&gt; any()</tt></p>
 
62
</div>
 
63
 
 
64
<h3 class="function"><a name="start-1">start/1</a></h3>
 
65
<div class="spec">
 
66
<p><tt>start(Options) -&gt; any()</tt></p>
 
67
</div>
 
68
 
 
69
<h3 class="function"><a name="terminate-2">terminate/2</a></h3>
 
70
<div class="spec">
 
71
<p><tt>terminate(X1, St) -&gt; any()</tt></p>
 
72
</div>
 
73
<hr>
 
74
 
 
75
<div class="navbar"><a name="#navbar_bottom"></a><table width="100%" border="0" cellspacing="0" cellpadding="2" summary="navigation bar"><tr><td><a href="overview-summary.html" target="overviewFrame">Overview</a></td><td><a href="http://www.erlang.org/"><img src="erlang.png" align="right" border="0" alt="erlang logo"></a></td></tr></table></div>
 
76
<p><i>Generated by EDoc, Apr 19 2009, 22:38:34.</i></p>
 
77
</body>
 
78
</html>