我对.NET实施了以下FitNesse测试。它使用“RowFixture”返回已验证的对象。这一切都可以。
我的问题是,如何从FIT测试中将“输入”传递给数组? 在monent,这是内部硬编码。
这是FIT测试:
!|ReturnObjectMultiDimension|
|Id |Name |
|1, 2, 3, 4 |a, b, c, d |
以下是代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using fit;
using dbfit;
namespace DbFitProject
{
public class ReturnObjectMultiDimension : RowFixture
{
public override Type GetTargetClass()
{
return typeof(CustomerObject);
}
public override object[] Query()
{
CustomerObject[] array = new CustomerObject[1];
array[0] = new CustomerObject(new int[4] { 1, 2, 3, 4 }, new string[4] {"a","b","c","d" });
return array;
}
}
public class CustomerObject
{
public int[] Id;
public string[] Name;
public CustomerObject(int[] Id, string[] Name)
{
this.Id = Id;
this.Name = Name;
}
}
}
感谢您的帮助。
答案 0 :(得分:0)
只有一个创建客户对象列表的类更简单,fitSharp会自动将列表包装在一个夹具中以检查结果:
word boundary