01: // Modified or written by Object Mentor, Inc. for inclusion with FitNesse.
02: // Copyright (c) 2002 Cunningham & Cunningham, Inc.
03: // Released under the terms of the GNU General Public License version 2 or later.
04: package fit;
05:
06: public class CppFitServerTest extends FitServerTest {
07: protected String command() {
08: return "C:\\tools\\fit\\cpp\\FitServer\\Debug\\FitServer.exe";
09: }
10:
11: public void testSimpleStartUp() throws Exception {
12: super .testSimpleStartUp();
13: }
14:
15: public void testBadConnection() throws Exception {
16: super .testBadConnection();
17: }
18:
19: public void testNonTestInput() throws Exception {
20: super .testNonTestInput();
21: }
22:
23: public void testOneSimpleRun_Fail() throws Exception {
24: super .testOneSimpleRun_Fail();
25: }
26:
27: public void testOneSimpleRun_Pass() throws Exception {
28: super .testOneSimpleRun_Pass();
29: }
30:
31: public void testTwoSimpleRuns() throws Exception {
32: super .testTwoSimpleRuns();
33: }
34:
35: public void testOneMulitiTableRun() throws Exception {
36: super .testOneMulitiTableRun();
37: }
38:
39: public void testExtraTextIdPrinted() throws Exception {
40: super .testExtraTextIdPrinted();
41: }
42:
43: protected String simpleTable(String fixtureName) {
44: return "<table>" + "<tr><td>" + fixtureName + "</td></tr>"
45: + "</table>";
46: }
47: }
|