fit 1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.txt +203 -0
- data/Rakefile +111 -0
- data/bin/FitServer.rb +6 -0
- data/bin/fit +10 -0
- data/bin/fit.cgi +36 -0
- data/doc/examples/AllCombinations.html +55 -0
- data/doc/examples/AllFiles.html +60 -0
- data/doc/examples/AllPairs/function/cosine.html +57 -0
- data/doc/examples/AllPairs/function/sine.html +57 -0
- data/doc/examples/AllPairs/magnitude/180+30.html +45 -0
- data/doc/examples/AllPairs/magnitude/30.html +33 -0
- data/doc/examples/AllPairs/magnitude/360+30.html +45 -0
- data/doc/examples/AllPairs/magnitude/90-30.html +45 -0
- data/doc/examples/AllPairs/sign/change-sign.html +27 -0
- data/doc/examples/AllPairs/sign/multiply.html +31 -0
- data/doc/examples/AllPairs/sign/no-change.html +23 -0
- data/doc/examples/AllPairs.html +51 -0
- data/doc/examples/BinaryChop.html +89 -0
- data/doc/examples/CalculatorExample.html +108 -0
- data/doc/examples/ColumnIndex.html +43 -0
- data/doc/examples/ExampleTests.html +43 -0
- data/doc/examples/FitAcceptanceTests.html +53 -0
- data/doc/examples/GeoCoordinate.html +87 -0
- data/doc/examples/MusicExample.html +143 -0
- data/doc/examples/MusicExampleWithErrors.html +128 -0
- data/doc/examples/NetworkExample.html +47 -0
- data/doc/examples/WebPageExample.html +92 -0
- data/doc/examples/arithmetic.html +211 -0
- data/doc/examples/files/hp35bk.jpg +0 -0
- data/doc/examples/logo.gif +0 -0
- data/doc/fitnesse/FitNesse.RubY.AcceptanceTests.FixtureParameters.html +81 -0
- data/doc/fitnesse/FitNesse.RubY.AcceptanceTests.GracefulFixtureNames.html +87 -0
- data/doc/fitnesse/FitNesse.RubY.AcceptanceTests.GracefulMemberNames.html +73 -0
- data/doc/fitnesse/FitNesse.RubY.AcceptanceTests.ImportFixture.html +61 -0
- data/doc/fitnesse/FitNesse.RubY.AcceptanceTests.WaysToSpecifyaFixtureNamespace.html +81 -0
- data/doc/spec/annotation.html +3833 -0
- data/doc/spec/extensions.html +302 -0
- data/doc/spec/fixtures.html +5181 -0
- data/doc/spec/index.html +947 -0
- data/doc/spec/parse.html +3094 -0
- data/lib/eg/all_combinations.rb +44 -0
- data/lib/eg/all_files.rb +94 -0
- data/lib/eg/all_pairs.rb +172 -0
- data/lib/eg/arithmetic_column_fixture.rb +35 -0
- data/lib/eg/arithmetic_fixture.rb +29 -0
- data/lib/eg/binary_chop.rb +100 -0
- data/lib/eg/calculator.rb +69 -0
- data/lib/eg/column_index.rb +85 -0
- data/lib/eg/division.rb +13 -0
- data/lib/eg/echo_args_fixture.rb +9 -0
- data/lib/eg/example_tests.rb +84 -0
- data/lib/eg/music/Music.txt +38 -0
- data/lib/eg/music/browser.rb +60 -0
- data/lib/eg/music/display.rb +24 -0
- data/lib/eg/music/music.rb +67 -0
- data/lib/eg/music/music_library.rb +70 -0
- data/lib/eg/music/music_player.rb +77 -0
- data/lib/eg/music/realtime.rb +39 -0
- data/lib/eg/music/simulator.rb +81 -0
- data/lib/eg/nested/bob.rb +12 -0
- data/lib/eg/nested/bob_the_builder_fixture.rb +11 -0
- data/lib/eg/net/simulator.rb +69 -0
- data/lib/eg/page.rb +91 -0
- data/lib/eg/sqrt.rb +19 -0
- data/lib/fat/annotation_fixture.rb +83 -0
- data/lib/fat/color.rb +45 -0
- data/lib/fat/divide.rb +13 -0
- data/lib/fat/document_parse_fixture.rb +67 -0
- data/lib/fat/equals.rb +59 -0
- data/lib/fat/fixture_name_fixture.rb +67 -0
- data/lib/fat/html_to_text_fixture.rb +20 -0
- data/lib/fat/money.rb +18 -0
- data/lib/fat/output_fixture.rb +32 -0
- data/lib/fat/parse_fixture.rb +92 -0
- data/lib/fat/reference_fixture.rb +31 -0
- data/lib/fat/standard_annotation_fixture.rb +58 -0
- data/lib/fat/string_writer.rb +12 -0
- data/lib/fat/table.rb +23 -0
- data/lib/fat/table_parse_fixture.rb +33 -0
- data/lib/fat/text_to_html_fixture.rb +21 -0
- data/lib/fit/action_fixture.rb +65 -0
- data/lib/fit/column_fixture.rb +104 -0
- data/lib/fit/file_runner.rb +80 -0
- data/lib/fit/fit_protocol.rb +62 -0
- data/lib/fit/fit_server.rb +173 -0
- data/lib/fit/fixture.rb +309 -0
- data/lib/fit/fixture_loader.rb +75 -0
- data/lib/fit/import_fixture.rb +9 -0
- data/lib/fit/parse.rb +206 -0
- data/lib/fit/primitive_fixture.rb +52 -0
- data/lib/fit/row_fixture.rb +188 -0
- data/lib/fit/scientific_double.rb +70 -0
- data/lib/fit/summary.rb +46 -0
- data/lib/fit/timed_action_fixture.rb +35 -0
- data/lib/fit/type_adapter.rb +95 -0
- data/lib/fit/wiki_runner.rb +15 -0
- data/lib/fittask.rb +184 -0
- data/test/all_tests.rb +13 -0
- data/test/file_runner_test.rb +52 -0
- data/test/fit_server_test.rb +214 -0
- data/test/fixture_loader_test.rb +71 -0
- data/test/fixture_test.rb +41 -0
- data/test/fixtures/fail_fixture.rb +9 -0
- data/test/fixtures/pass_fixture.rb +9 -0
- data/test/framework_test.rb +51 -0
- data/test/parse_test.rb +101 -0
- data/test/row_fixture_test.rb +44 -0
- data/test/scientific_double_test.rb +35 -0
- data/test/type_adapter_test.rb +120 -0
- metadata +165 -0
@@ -0,0 +1,211 @@
|
|
1
|
+
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
5
|
+
<meta name="Author" content="Ward Cunningham">
|
6
|
+
<meta name="GENERATOR" content="Mozilla/4.5 [en]C-CCK-MCD compaq (Win98; U) [Netscape]">
|
7
|
+
<title>Arithmetic</title>
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
|
11
|
+
<h1>
|
12
|
+
Integer Arithmetic</h1>
|
13
|
+
|
14
|
+
<p>The computer relies on arithmetic. Here we test a variety of arithmetic
|
15
|
+
operations expressed as 32 bit two's complement binary numbers (Java's
|
16
|
+
int).
|
17
|
+
<br>
|
18
|
+
<table BORDER COLS=6 CELLSPACING=0 CELLPADDING=3 >
|
19
|
+
<tr>
|
20
|
+
<td COLSPAN="6">eg.ArithmeticFixture</td>
|
21
|
+
</tr>
|
22
|
+
|
23
|
+
<tr>
|
24
|
+
<td>x</td>
|
25
|
+
|
26
|
+
<td>y</td>
|
27
|
+
|
28
|
+
<td>+</td>
|
29
|
+
|
30
|
+
<td>-</td>
|
31
|
+
|
32
|
+
<td>*</td>
|
33
|
+
|
34
|
+
<td>/</td>
|
35
|
+
</tr>
|
36
|
+
|
37
|
+
<tr>
|
38
|
+
<td>0</td>
|
39
|
+
|
40
|
+
<td>0</td>
|
41
|
+
|
42
|
+
<td>0</td>
|
43
|
+
|
44
|
+
<td>0</td>
|
45
|
+
|
46
|
+
<td>0</td>
|
47
|
+
|
48
|
+
<td>0</td>
|
49
|
+
</tr>
|
50
|
+
|
51
|
+
|
52
|
+
<tr>
|
53
|
+
<td>1</td>
|
54
|
+
|
55
|
+
<td>2</td>
|
56
|
+
|
57
|
+
<td>3</td>
|
58
|
+
|
59
|
+
<td>-1</td>
|
60
|
+
|
61
|
+
<td>2</td>
|
62
|
+
|
63
|
+
<td>0.5</td>
|
64
|
+
</tr>
|
65
|
+
|
66
|
+
<tr>
|
67
|
+
<td>1</td>
|
68
|
+
|
69
|
+
<td>-1</td>
|
70
|
+
|
71
|
+
<td>0</td>
|
72
|
+
|
73
|
+
<td>2</td>
|
74
|
+
|
75
|
+
<td>-1</td>
|
76
|
+
|
77
|
+
<td>-1</td>
|
78
|
+
</tr>
|
79
|
+
|
80
|
+
<tr>
|
81
|
+
<td>10000</td>
|
82
|
+
|
83
|
+
<td>10000</td>
|
84
|
+
|
85
|
+
<td>20000</td>
|
86
|
+
|
87
|
+
<td>0</td>
|
88
|
+
|
89
|
+
<td>100000000</td>
|
90
|
+
|
91
|
+
<td>1</td>
|
92
|
+
</tr>
|
93
|
+
|
94
|
+
<tr>
|
95
|
+
<td>100000</td>
|
96
|
+
|
97
|
+
<td>100000</td>
|
98
|
+
|
99
|
+
<td>200000</td>
|
100
|
+
|
101
|
+
<td>0</td>
|
102
|
+
|
103
|
+
<td>10000000000</td>
|
104
|
+
|
105
|
+
<td>1</td>
|
106
|
+
</tr>
|
107
|
+
|
108
|
+
<tr>
|
109
|
+
<td>1000000</td>
|
110
|
+
|
111
|
+
<td>1000000</td>
|
112
|
+
|
113
|
+
<td>2000000</td>
|
114
|
+
|
115
|
+
<td>0</td>
|
116
|
+
|
117
|
+
<td>1000000000000</td>
|
118
|
+
|
119
|
+
<td>1</td>
|
120
|
+
</tr>
|
121
|
+
</table>
|
122
|
+
|
123
|
+
<br><br>
|
124
|
+
Now we try something similar using automatic type conversion offered by ColumnFixtures (BFL1).
|
125
|
+
<br><br>
|
126
|
+
|
127
|
+
<table BORDER CELLSPACING=0 CELLPADDING=3>
|
128
|
+
<tr>
|
129
|
+
<td colspan=5>eg.ArithmeticColumnFixture</td>
|
130
|
+
</tr>
|
131
|
+
<tr>
|
132
|
+
<td>x</td>
|
133
|
+
<td>y</td>
|
134
|
+
<td>plus()</td>
|
135
|
+
<td>times()</td>
|
136
|
+
<td>divide()</td>
|
137
|
+
<td>floating()</td>
|
138
|
+
</tr>
|
139
|
+
<tr>
|
140
|
+
<td>2</td>
|
141
|
+
<td>3</td>
|
142
|
+
<td>5</td>
|
143
|
+
<td>6</td>
|
144
|
+
<td>0</td>
|
145
|
+
<td>0.6666667</td>
|
146
|
+
</tr>
|
147
|
+
<tr>
|
148
|
+
<td>0</td>
|
149
|
+
<td>0</td>
|
150
|
+
<td>0</td>
|
151
|
+
<td>0</td>
|
152
|
+
<td>error</td>
|
153
|
+
<td>error</td>
|
154
|
+
</tr>
|
155
|
+
<tr>
|
156
|
+
<td>0</td>
|
157
|
+
<td>0</td>
|
158
|
+
<td>0</td>
|
159
|
+
<td>0</td>
|
160
|
+
<td></td>
|
161
|
+
<td></td>
|
162
|
+
</tr>
|
163
|
+
<tr>
|
164
|
+
<td>200</td>
|
165
|
+
<td>300</td>
|
166
|
+
<td>500</td>
|
167
|
+
<td>60000</td>
|
168
|
+
<td>0</td>
|
169
|
+
<td>0.6666667</td>
|
170
|
+
</tr>
|
171
|
+
<tr>
|
172
|
+
<td>2</td>
|
173
|
+
<td>3</td>
|
174
|
+
<td>10</td>
|
175
|
+
<td>10</td>
|
176
|
+
<td>10</td>
|
177
|
+
</tr>
|
178
|
+
<tr>
|
179
|
+
<td>200</td>
|
180
|
+
<td>3</td>
|
181
|
+
<td>5</td>
|
182
|
+
<td>6</td>
|
183
|
+
<td>0</td>
|
184
|
+
<td>0.6666667</td>
|
185
|
+
</tr>
|
186
|
+
<tr>
|
187
|
+
<td>2</td>
|
188
|
+
<td>-3</td>
|
189
|
+
<td>-1</td>
|
190
|
+
<td>-6</td>
|
191
|
+
<td>-0</td>
|
192
|
+
<td>-0.6666667</td>
|
193
|
+
</tr>
|
194
|
+
</table>
|
195
|
+
|
196
|
+
<br><br>
|
197
|
+
|
198
|
+
|
199
|
+
<table BORDER CELLSPACING=0 CELLPADDING=3>
|
200
|
+
<tr>
|
201
|
+
<td COLSPAN="2">fit.Summary</td>
|
202
|
+
</tr>
|
203
|
+
</table>
|
204
|
+
|
205
|
+
|
206
|
+
|
207
|
+
<p>Document prepaired by Ward Cunningham
|
208
|
+
<br>First Version July 11, 2002
|
209
|
+
<br>Last Update August 17, 2002
|
210
|
+
</body>
|
211
|
+
</html>
|
Binary file
|
Binary file
|
@@ -0,0 +1,81 @@
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.DTD">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>FitNesse.RubY.AcceptanceTests.FixtureParameters</title>
|
5
|
+
<link rel="stylesheet" type="text/css" href="/files/css/fitnesse.css" media="screen"/>
|
6
|
+
<link rel="stylesheet" type="text/css" href="/files/css/fitnesse_print.css" media="print"/>
|
7
|
+
<script src="/files/javascript/fitnesse.js" type="text/javascript"></script>
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
<div class="sidebar">
|
11
|
+
<div class="art_niche" onclick="document.location='/'"></div>
|
12
|
+
<div class="actions">
|
13
|
+
<!--Test button-->
|
14
|
+
<a href="FitNesse.RubY.AcceptanceTests.FixtureParameters?test" accesskey="t">Test</a>
|
15
|
+
<div class="nav_break"> </div>
|
16
|
+
<!--Edit button-->
|
17
|
+
<a href="FitNesse.RubY.AcceptanceTests.FixtureParameters?edit" accesskey="e">Edit</a>
|
18
|
+
<!--Versions button-->
|
19
|
+
<a href="FitNesse.RubY.AcceptanceTests.FixtureParameters?versions" accesskey="v">Versions</a>
|
20
|
+
<!--Properties button-->
|
21
|
+
<a href="FitNesse.RubY.AcceptanceTests.FixtureParameters?properties" accesskey="p">Properties</a>
|
22
|
+
<!--Refactor button-->
|
23
|
+
<a href="FitNesse.RubY.AcceptanceTests.FixtureParameters?refactor" accesskey="r">Refactor</a>
|
24
|
+
<!--Where Used button-->
|
25
|
+
<a href="FitNesse.RubY.AcceptanceTests.FixtureParameters?whereUsed" accesskey="w">Where Used</a>
|
26
|
+
<div class="nav_break"> </div>
|
27
|
+
<!--RecentChanges button-->
|
28
|
+
<a href="/RecentChanges" accesskey="">RecentChanges</a>
|
29
|
+
<!--Files button-->
|
30
|
+
<a href="/files" accesskey="f">Files</a>
|
31
|
+
<!--Search button-->
|
32
|
+
<a href="?searchForm" accesskey="s">Search</a>
|
33
|
+
</div>
|
34
|
+
</div>
|
35
|
+
<div class="mainbar">
|
36
|
+
<div class="header">
|
37
|
+
<a href="/FitNesse">FitNesse</a>.
|
38
|
+
<a href="/FitNesse.RubY">RubY</a>.
|
39
|
+
<a href="/FitNesse.RubY.AcceptanceTests">AcceptanceTests</a>.
|
40
|
+
<br/><span class="page_title">FixtureParameters</span>
|
41
|
+
</div>
|
42
|
+
<div class="main">You can pass parameters into fixtures.<br><table border="1" cellspacing="0">
|
43
|
+
<tr><td>Import</td>
|
44
|
+
</tr>
|
45
|
+
<tr><td>Eg</td>
|
46
|
+
</tr>
|
47
|
+
</table>
|
48
|
+
<br><table border="1" cellspacing="0">
|
49
|
+
<tr><td>echo args</td>
|
50
|
+
<td>these</td>
|
51
|
+
<td>things</td>
|
52
|
+
<td>are</td>
|
53
|
+
<td>fun</td>
|
54
|
+
<td>and</td>
|
55
|
+
<td>fun</td>
|
56
|
+
<td>is</td>
|
57
|
+
<td>good</td>
|
58
|
+
</tr>
|
59
|
+
<tr><td colspan="9">to_s</td>
|
60
|
+
</tr>
|
61
|
+
<tr><td colspan="9">these</td>
|
62
|
+
</tr>
|
63
|
+
<tr><td colspan="9">things</td>
|
64
|
+
</tr>
|
65
|
+
<tr><td colspan="9">are</td>
|
66
|
+
</tr>
|
67
|
+
<tr><td colspan="9">fun</td>
|
68
|
+
</tr>
|
69
|
+
<tr><td colspan="9">and</td>
|
70
|
+
</tr>
|
71
|
+
<tr><td colspan="9">fun</td>
|
72
|
+
</tr>
|
73
|
+
<tr><td colspan="9">is</td>
|
74
|
+
</tr>
|
75
|
+
<tr><td colspan="9">good</td>
|
76
|
+
</tr>
|
77
|
+
</table>
|
78
|
+
<hr><br>[ <a href="FitNesse.UserGuide">User Guide</a>] [<a href="FrontPage">.FrontPage</a>] [<a href="RecentChanges">.RecentChanges</a>]</div>
|
79
|
+
</div>
|
80
|
+
</body>
|
81
|
+
</html>
|
@@ -0,0 +1,87 @@
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.DTD">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>FitNesse.RubY.AcceptanceTests.GracefulFixtureNames</title>
|
5
|
+
<link rel="stylesheet" type="text/css" href="/files/css/fitnesse.css" media="screen"/>
|
6
|
+
<link rel="stylesheet" type="text/css" href="/files/css/fitnesse_print.css" media="print"/>
|
7
|
+
<script src="/files/javascript/fitnesse.js" type="text/javascript"></script>
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
<div class="sidebar">
|
11
|
+
<div class="art_niche" onclick="document.location='/'"></div>
|
12
|
+
<div class="actions">
|
13
|
+
<!--Test button-->
|
14
|
+
<a href="FitNesse.RubY.AcceptanceTests.GracefulFixtureNames?test" accesskey="t">Test</a>
|
15
|
+
<div class="nav_break"> </div>
|
16
|
+
<!--Edit button-->
|
17
|
+
<a href="FitNesse.RubY.AcceptanceTests.GracefulFixtureNames?edit" accesskey="e">Edit</a>
|
18
|
+
<!--Versions button-->
|
19
|
+
<a href="FitNesse.RubY.AcceptanceTests.GracefulFixtureNames?versions" accesskey="v">Versions</a>
|
20
|
+
<!--Properties button-->
|
21
|
+
<a href="FitNesse.RubY.AcceptanceTests.GracefulFixtureNames?properties" accesskey="p">Properties</a>
|
22
|
+
<!--Refactor button-->
|
23
|
+
<a href="FitNesse.RubY.AcceptanceTests.GracefulFixtureNames?refactor" accesskey="r">Refactor</a>
|
24
|
+
<!--Where Used button-->
|
25
|
+
<a href="FitNesse.RubY.AcceptanceTests.GracefulFixtureNames?whereUsed" accesskey="w">Where Used</a>
|
26
|
+
<div class="nav_break"> </div>
|
27
|
+
<!--RecentChanges button-->
|
28
|
+
<a href="/RecentChanges" accesskey="">RecentChanges</a>
|
29
|
+
<!--Files button-->
|
30
|
+
<a href="/files" accesskey="f">Files</a>
|
31
|
+
<!--Search button-->
|
32
|
+
<a href="?searchForm" accesskey="s">Search</a>
|
33
|
+
</div>
|
34
|
+
</div>
|
35
|
+
<div class="mainbar">
|
36
|
+
<div class="header">
|
37
|
+
<a href="/FitNesse">FitNesse</a>.
|
38
|
+
<a href="/FitNesse.RubY">RubY</a>.
|
39
|
+
<a href="/FitNesse.RubY.AcceptanceTests">AcceptanceTests</a>.
|
40
|
+
<br/><span class="page_title">GracefulFixtureNames</span>
|
41
|
+
</div>
|
42
|
+
<div class="main"><table border="1" cellspacing="0">
|
43
|
+
<tr><td>Import</td>
|
44
|
+
</tr>
|
45
|
+
<tr><td>Eg.Nested</td>
|
46
|
+
</tr>
|
47
|
+
</table>
|
48
|
+
<br>These should find the class Eg::Nested::BobTheBuilderFixture<a href="FitNesse.RubY.AcceptanceTests.BobTheBuilderFixture?edit">?</a>.<br><br><table border="1" cellspacing="0">
|
49
|
+
<tr><td colspan="3">bob the builder.</td>
|
50
|
+
</tr>
|
51
|
+
<tr><td>last_name</td>
|
52
|
+
<td>full_name()</td>
|
53
|
+
<td>are_you_bob()</td>
|
54
|
+
</tr>
|
55
|
+
<tr><td>Hughes</td>
|
56
|
+
<td>Bob Hughes</td>
|
57
|
+
<td>nope</td>
|
58
|
+
</tr>
|
59
|
+
</table>
|
60
|
+
<br><table border="1" cellspacing="0">
|
61
|
+
<tr><td colspan="3">bob+the+builder+fixture.</td>
|
62
|
+
</tr>
|
63
|
+
<tr><td>last_name</td>
|
64
|
+
<td>full_name()</td>
|
65
|
+
<td>are_you_bob()</td>
|
66
|
+
</tr>
|
67
|
+
<tr><td>Hughes</td>
|
68
|
+
<td>Bob Hughes</td>
|
69
|
+
<td>nope</td>
|
70
|
+
</tr>
|
71
|
+
</table>
|
72
|
+
<br><table border="1" cellspacing="0">
|
73
|
+
<tr><td colspan="3">bob*the*builder.</td>
|
74
|
+
</tr>
|
75
|
+
<tr><td>last_name</td>
|
76
|
+
<td>full_name()</td>
|
77
|
+
<td>are_you_bob()</td>
|
78
|
+
</tr>
|
79
|
+
<tr><td>Hughes</td>
|
80
|
+
<td>Bob Hughes</td>
|
81
|
+
<td>nope</td>
|
82
|
+
</tr>
|
83
|
+
</table>
|
84
|
+
<hr><br>[ <a href="FitNesse.UserGuide">User Guide</a>] [<a href="FrontPage">.FrontPage</a>] [<a href="RecentChanges">.RecentChanges</a>]</div>
|
85
|
+
</div>
|
86
|
+
</body>
|
87
|
+
</html>
|
@@ -0,0 +1,73 @@
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.DTD">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>FitNesse.RubY.AcceptanceTests.GracefulMemberNames</title>
|
5
|
+
<link rel="stylesheet" type="text/css" href="/files/css/fitnesse.css" media="screen"/>
|
6
|
+
<link rel="stylesheet" type="text/css" href="/files/css/fitnesse_print.css" media="print"/>
|
7
|
+
<script src="/files/javascript/fitnesse.js" type="text/javascript"></script>
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
<div class="sidebar">
|
11
|
+
<div class="art_niche" onclick="document.location='/'"></div>
|
12
|
+
<div class="actions">
|
13
|
+
<!--Test button-->
|
14
|
+
<a href="FitNesse.RubY.AcceptanceTests.GracefulMemberNames?test" accesskey="t">Test</a>
|
15
|
+
<div class="nav_break"> </div>
|
16
|
+
<!--Edit button-->
|
17
|
+
<a href="FitNesse.RubY.AcceptanceTests.GracefulMemberNames?edit" accesskey="e">Edit</a>
|
18
|
+
<!--Versions button-->
|
19
|
+
<a href="FitNesse.RubY.AcceptanceTests.GracefulMemberNames?versions" accesskey="v">Versions</a>
|
20
|
+
<!--Properties button-->
|
21
|
+
<a href="FitNesse.RubY.AcceptanceTests.GracefulMemberNames?properties" accesskey="p">Properties</a>
|
22
|
+
<!--Refactor button-->
|
23
|
+
<a href="FitNesse.RubY.AcceptanceTests.GracefulMemberNames?refactor" accesskey="r">Refactor</a>
|
24
|
+
<!--Where Used button-->
|
25
|
+
<a href="FitNesse.RubY.AcceptanceTests.GracefulMemberNames?whereUsed" accesskey="w">Where Used</a>
|
26
|
+
<div class="nav_break"> </div>
|
27
|
+
<!--RecentChanges button-->
|
28
|
+
<a href="/RecentChanges" accesskey="">RecentChanges</a>
|
29
|
+
<!--Files button-->
|
30
|
+
<a href="/files" accesskey="f">Files</a>
|
31
|
+
<!--Search button-->
|
32
|
+
<a href="?searchForm" accesskey="s">Search</a>
|
33
|
+
</div>
|
34
|
+
</div>
|
35
|
+
<div class="mainbar">
|
36
|
+
<div class="header">
|
37
|
+
<a href="/FitNesse">FitNesse</a>.
|
38
|
+
<a href="/FitNesse.RubY">RubY</a>.
|
39
|
+
<a href="/FitNesse.RubY.AcceptanceTests">AcceptanceTests</a>.
|
40
|
+
<br/><span class="page_title">GracefulMemberNames</span>
|
41
|
+
</div>
|
42
|
+
<div class="main"><table border="1" cellspacing="0">
|
43
|
+
<tr><td>Import</td>
|
44
|
+
</tr>
|
45
|
+
<tr><td>Eg.Nested</td>
|
46
|
+
</tr>
|
47
|
+
</table>
|
48
|
+
<br><table border="1" cellspacing="0">
|
49
|
+
<tr><td colspan="9">bob the builder</td>
|
50
|
+
</tr>
|
51
|
+
<tr><td>last name</td><td>Last Name</td>
|
52
|
+
<td>full name?</td>
|
53
|
+
<td>full_name?</td>
|
54
|
+
<td>FullName()</td>
|
55
|
+
<td>fullName?</td>
|
56
|
+
<td>full*name?</td>
|
57
|
+
<td>full**name?</td>
|
58
|
+
<td>Full Name?</td>
|
59
|
+
</tr>
|
60
|
+
<tr><td>Builder</td><td>Bob</td>
|
61
|
+
<td>Bob Bob</td>
|
62
|
+
<td>Bob Bob</td>
|
63
|
+
<td>Bob Bob</td>
|
64
|
+
<td>Bob Bob</td>
|
65
|
+
<td>Bob Bob</td>
|
66
|
+
<td>Bob Bob</td>
|
67
|
+
<td>Bob Bob</td>
|
68
|
+
</tr>
|
69
|
+
</table>
|
70
|
+
<hr><br>[ <a href="FitNesse.UserGuide">User Guide</a>] [<a href="FrontPage">.FrontPage</a>] [<a href="RecentChanges">.RecentChanges</a>]</div>
|
71
|
+
</div>
|
72
|
+
</body>
|
73
|
+
</html>
|
@@ -0,0 +1,61 @@
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.DTD">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>FitNesse.RubY.AcceptanceTests.ImportFixture</title>
|
5
|
+
<link rel="stylesheet" type="text/css" href="/files/css/fitnesse.css" media="screen"/>
|
6
|
+
<link rel="stylesheet" type="text/css" href="/files/css/fitnesse_print.css" media="print"/>
|
7
|
+
<script src="/files/javascript/fitnesse.js" type="text/javascript"></script>
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
<div class="sidebar">
|
11
|
+
<div class="art_niche" onclick="document.location='/'"></div>
|
12
|
+
<div class="actions">
|
13
|
+
<!--Test button-->
|
14
|
+
<a href="FitNesse.RubY.AcceptanceTests.ImportFixture?test" accesskey="t">Test</a>
|
15
|
+
<div class="nav_break"> </div>
|
16
|
+
<!--Edit button-->
|
17
|
+
<a href="FitNesse.RubY.AcceptanceTests.ImportFixture?edit" accesskey="e">Edit</a>
|
18
|
+
<!--Versions button-->
|
19
|
+
<a href="FitNesse.RubY.AcceptanceTests.ImportFixture?versions" accesskey="v">Versions</a>
|
20
|
+
<!--Properties button-->
|
21
|
+
<a href="FitNesse.RubY.AcceptanceTests.ImportFixture?properties" accesskey="p">Properties</a>
|
22
|
+
<!--Refactor button-->
|
23
|
+
<a href="FitNesse.RubY.AcceptanceTests.ImportFixture?refactor" accesskey="r">Refactor</a>
|
24
|
+
<!--Where Used button-->
|
25
|
+
<a href="FitNesse.RubY.AcceptanceTests.ImportFixture?whereUsed" accesskey="w">Where Used</a>
|
26
|
+
<div class="nav_break"> </div>
|
27
|
+
<!--RecentChanges button-->
|
28
|
+
<a href="/RecentChanges" accesskey="">RecentChanges</a>
|
29
|
+
<!--Files button-->
|
30
|
+
<a href="/files" accesskey="f">Files</a>
|
31
|
+
<!--Search button-->
|
32
|
+
<a href="?searchForm" accesskey="s">Search</a>
|
33
|
+
</div>
|
34
|
+
</div>
|
35
|
+
<div class="mainbar">
|
36
|
+
<div class="header">
|
37
|
+
<a href="/FitNesse">FitNesse</a>.
|
38
|
+
<a href="/FitNesse.RubY">RubY</a>.
|
39
|
+
<a href="/FitNesse.RubY.AcceptanceTests">AcceptanceTests</a>.
|
40
|
+
<br/><span class="page_title">ImportFixture</span>
|
41
|
+
</div>
|
42
|
+
<div class="main"><table border="1" cellspacing="0">
|
43
|
+
<tr><td>ImportFixture</td>
|
44
|
+
</tr>
|
45
|
+
<tr><td>Eg.Nested</td>
|
46
|
+
</tr>
|
47
|
+
</table>
|
48
|
+
<br><table border="1" cellspacing="0">
|
49
|
+
<tr><td colspan="2">Bob</td>
|
50
|
+
</tr>
|
51
|
+
<tr><td>last_name</td>
|
52
|
+
<td>full_name()</td>
|
53
|
+
</tr>
|
54
|
+
<tr><td>Dobbs</td>
|
55
|
+
<td>Bob Dobbs</td>
|
56
|
+
</tr>
|
57
|
+
</table>
|
58
|
+
<hr><br>[ <a href="FitNesse.UserGuide">User Guide</a>] [<a href="FrontPage">.FrontPage</a>] [<a href="RecentChanges">.RecentChanges</a>]</div>
|
59
|
+
</div>
|
60
|
+
</body>
|
61
|
+
</html>
|
@@ -0,0 +1,81 @@
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.DTD">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>FitNesse.RubY.AcceptanceTests.WaysToSpecifyaFixtureNamespace</title>
|
5
|
+
<link rel="stylesheet" type="text/css" href="/files/css/fitnesse.css" media="screen"/>
|
6
|
+
<link rel="stylesheet" type="text/css" href="/files/css/fitnesse_print.css" media="print"/>
|
7
|
+
<script src="/files/javascript/fitnesse.js" type="text/javascript"></script>
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
<div class="sidebar">
|
11
|
+
<div class="art_niche" onclick="document.location='/'"></div>
|
12
|
+
<div class="actions">
|
13
|
+
<!--Test button-->
|
14
|
+
<a href="FitNesse.RubY.AcceptanceTests.WaysToSpecifyaFixtureNamespace?test" accesskey="t">Test</a>
|
15
|
+
<div class="nav_break"> </div>
|
16
|
+
<!--Edit button-->
|
17
|
+
<a href="FitNesse.RubY.AcceptanceTests.WaysToSpecifyaFixtureNamespace?edit" accesskey="e">Edit</a>
|
18
|
+
<!--Versions button-->
|
19
|
+
<a href="FitNesse.RubY.AcceptanceTests.WaysToSpecifyaFixtureNamespace?versions" accesskey="v">Versions</a>
|
20
|
+
<!--Properties button-->
|
21
|
+
<a href="FitNesse.RubY.AcceptanceTests.WaysToSpecifyaFixtureNamespace?properties" accesskey="p">Properties</a>
|
22
|
+
<!--Refactor button-->
|
23
|
+
<a href="FitNesse.RubY.AcceptanceTests.WaysToSpecifyaFixtureNamespace?refactor" accesskey="r">Refactor</a>
|
24
|
+
<!--Where Used button-->
|
25
|
+
<a href="FitNesse.RubY.AcceptanceTests.WaysToSpecifyaFixtureNamespace?whereUsed" accesskey="w">Where Used</a>
|
26
|
+
<div class="nav_break"> </div>
|
27
|
+
<!--RecentChanges button-->
|
28
|
+
<a href="/RecentChanges" accesskey="">RecentChanges</a>
|
29
|
+
<!--Files button-->
|
30
|
+
<a href="/files" accesskey="f">Files</a>
|
31
|
+
<!--Search button-->
|
32
|
+
<a href="?searchForm" accesskey="s">Search</a>
|
33
|
+
</div>
|
34
|
+
</div>
|
35
|
+
<div class="mainbar">
|
36
|
+
<div class="header">
|
37
|
+
<a href="/FitNesse">FitNesse</a>.
|
38
|
+
<a href="/FitNesse.RubY">RubY</a>.
|
39
|
+
<a href="/FitNesse.RubY.AcceptanceTests">AcceptanceTests</a>.
|
40
|
+
<br/><span class="page_title">WaysToSpecifyaFixtureNamespace</span>
|
41
|
+
</div>
|
42
|
+
<div class="main">All of these should find Eg::Nested::BobTheBuilderFixture<a href="FitNesse.RubY.AcceptanceTests.BobTheBuilderFixture?edit">?</a><br><br><table border="1" cellspacing="0">
|
43
|
+
<tr><td colspan="3">eg::nested::BobTheBuilderFixture</td>
|
44
|
+
</tr>
|
45
|
+
<tr><td>last_name</td>
|
46
|
+
<td>full_name()</td>
|
47
|
+
<td>are_you_bob()</td>
|
48
|
+
</tr>
|
49
|
+
<tr><td>Hughes</td>
|
50
|
+
<td>Bob Hughes</td>
|
51
|
+
<td>nope</td>
|
52
|
+
</tr>
|
53
|
+
</table>
|
54
|
+
<br><table border="1" cellspacing="0">
|
55
|
+
<tr><td colspan="3">Eg.Nested.BobTheBuilderFixture</td>
|
56
|
+
</tr>
|
57
|
+
<tr><td>last_name</td>
|
58
|
+
<td>full_name()</td>
|
59
|
+
<td>are_you_bob()</td>
|
60
|
+
</tr>
|
61
|
+
<tr><td>Hughes</td>
|
62
|
+
<td>Bob Hughes</td>
|
63
|
+
<td>nope</td>
|
64
|
+
</tr>
|
65
|
+
</table>
|
66
|
+
<br><table border="1" cellspacing="0">
|
67
|
+
<tr><td colspan="3">Eg::Nested::BobTheBuilderFixture</td>
|
68
|
+
</tr>
|
69
|
+
<tr><td>last_name</td>
|
70
|
+
<td>full_name()</td>
|
71
|
+
<td>are_you_bob()</td>
|
72
|
+
</tr>
|
73
|
+
<tr><td>Hughes</td>
|
74
|
+
<td>Bob Hughes</td>
|
75
|
+
<td>nope</td>
|
76
|
+
</tr>
|
77
|
+
</table>
|
78
|
+
<br><hr><br>[ <a href="FitNesse.UserGuide">User Guide</a>] [<a href="FrontPage">.FrontPage</a>] [<a href="RecentChanges">.RecentChanges</a>]</div>
|
79
|
+
</div>
|
80
|
+
</body>
|
81
|
+
</html>
|