- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写一个 xunit 测试来测试根据空格分割句子的实用方法的功能。例如:输入:“谁去那里?”,输出:{“Who”,“goes”,“there”}字符串的集合/列表。
我尝试过以下操作
[Theory]
[MemberData(nameof(GetSplitWordHelperTestCases))]
public void TestSplitWord(TestSplitWordHelper splitWordHelper)
{
var actualResult = (List<string>)splitWordHelper.Build().Item1.SplitWord();
var expectedResult = (List<string>)splitWordHelper.Build().Item2;
Assert.Equal(expectedResult.Count, actualResult.Count);
for(int i = 0; i < actualResult.Count; i++)
{
Assert.Equal(expectedResult[i], actualResult[i]);
}
}
public static IEnumerable<object[]> GetSplitWordHelperTestCases()
{
yield return new object[] { new TestSplitWordHelper("Hi There",
new List<string> { "Hi", "There" }) };
}
public class TestSplitWordHelper : IXunitSerializable
{
private IEnumerable<string> results;
private string source;
public TestSplitWordHelper()
{
}
public TestSplitWordHelper(string source, IEnumerable<string> results)
{
this.source = source;
this.results = results;
}
public Tuple<string, IEnumerable<string>> Build()
{
return new Tuple<string, IEnumerable<string>>(source, this.results);
}
public void Deserialize(IXunitSerializationInfo info)
{
source = info.GetValue<string>("source");
results = info.GetValue<IEnumerable<string>>("results");
}
public void Serialize(IXunitSerializationInfo info)
{
info.AddValue("source", source, typeof(string));
info.AddValue("results", results, typeof(IEnumerable<string>));
}
public override string ToString()
{
return string.Join(" ", results.Select(x => x.ToString()).ToArray());
}
}
当我编译这个时,我收到“System.ArgumentException:我们不知道如何序列化类型System.Collections.Generic.List”,我理解这个问题。 Xunit 无法序列化 List。
给定我的用例,如何编写测试用例?
谢谢!
最佳答案
Xunit cannot serialize List.
诀窍是切换到数组。确实,Xunit supports 这个。
因此切换所有 IEnumerable<string>
和List<string>
进入string[]
...还有田田!它有效。
下面是代码的修补和测试版本(已应用的更改用注释修饰)。
[Theory]
[MemberData(nameof(GetSplitWordHelperTestCases))]
public void TestSplitWord(TestSplitWordHelper splitWordHelper)
{
var actualResult = splitWordHelper.Build().Item1.SplitWord().ToList();
// (List<string>) changed to new List<string(...)
var expectedResult = new List<string>(splitWordHelper.Build().Item2);
Assert.Equal(expectedResult.Count, actualResult.Count);
for (int i = 0; i < actualResult.Count; i++)
{
Assert.Equal(expectedResult[i], actualResult[i]);
}
}
public static IEnumerable<object[]> GetSplitWordHelperTestCases()
{
yield return new object[] { new TestSplitWordHelper("Hi There",
// new List<string> changed to new string[]
new string[] { "Hi", "There" }) };
}
public class TestSplitWordHelper : IXunitSerializable
{
private string[] results;
private string source;
public TestSplitWordHelper()
{
}
public TestSplitWordHelper(string source, string[] results)
{
this.source = source;
this.results = results;
}
public Tuple<string, string[]> Build()
{
return new Tuple<string, string[]>(source, results);
}
public void Deserialize(IXunitSerializationInfo info)
{
source = info.GetValue<string>("source");
// IEnumerable<string> changed to string[]
results = info.GetValue<string[]>("results");
}
public void Serialize(IXunitSerializationInfo info)
{
info.AddValue("source", source, typeof(string));
// IEnumerable<string> changed to string[]
info.AddValue("results", results, typeof(string[]));
}
public override string ToString()
{
return string.Join(" ", results.Select(x => x.ToString()).ToArray());
}
}
关于list - 带有 List 对象的 XUnit MemberData,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44730693/
memberData
有什么区别
{@code memberData} 和有什么区别?和 memberData在 JavaDoc 中 最佳答案 有两个主要区别: {@code ...}更简洁:更易于阅读(和输入)。 {@code ..
当您将 [Theory] 与 [InlineData] 一起使用时,它将为提供的每项内联数据创建一个测试。但是,如果您使用 [MemberData],它只会显示为一个测试。 有没有办法让 [Membe
我在计算两次 C# Xunit 测试中来自静态类的计算数据时遇到了一些问题。 这将用于的实际生产代码要复杂得多,但后面的代码足以展示我所看到的问题。 在下面的代码中,我有一个随机生成的、延迟加载的 i
我正在编写一个 xunit 测试来测试根据空格分割句子的实用方法的功能。例如:输入:“谁去那里?”,输出:{“Who”,“goes”,“there”}字符串的集合/列表。 我尝试过以下操作 [
假设我有以下使用 xUnit 编写的测试用例: public static IEnumerable testValues = new List { new object[] {new doub
使用 xUnit.net,Theory 是否有可能使其 MemberData 源自派生类? public abstract class BaseTest { public abstract I
我正在尝试使用 xunit 的 MemberDataAttribute 返回键/值列表。 例如,像这样: [Theory] [MemberData("ValidCardData")] public v
我是一名优秀的程序员,十分优秀!