我正在创建Sample Fitnesse测试并在运行测试时遇到此错误
配合
日期:2013年4月9日星期二下午6:34:29(IST)
测试页面:.CalculatorRunner
命令:java -cp fitnesse.jar; fit.FitServer devcode 8082 12
退出代码:-1
已过去的时间:1.013秒
标准错误: 错误:无法找到或加载主类fit.FitServer
内部例外: FitClient:在建立连接之前终止外部进程。
C#侧的 namespace ConsoleApplication1
{
public class CalculatorRunner : ColumnFixture
{
int arg1;
public int Arg1
{
get { return arg1; }
set { arg1 = value; }
}
int arg2;
public int Arg2
{
get { return arg2; }
set { arg2 = value; }
}
public int Sum()
{
return Arg1 + Arg2;
}
}
}
!path C:\..\bin\Debug\*.*
!| import |
| ConsoleApplication1 |
!1 Let's run a simple calculator
!| CalculatorRunner |
| Arg1 | Arg2 | Sum? |
| 0 | 0 | 0 |
| 1 | 1 | 3 |
| 1 | 3 | 4 |
| 2 | 3 | 5 |