2

我有以下字符串:

       Actual       |   Expected
"The Actual String" | "The"
                    | "Actual"
                    | "String"
                    | "Other string"
                    |    ...

我需要创建一个方法,将Assert任何Expected字符串包含在实际字符串中,如下所示:

[TestClass]
public class UnitTest
{
    [TestMethod]
    public void TestMethod()
    {
        //Assertion Passed
        AssertContainsString("The Actual String", "The"); 

        //Assertion Passed
        AssertContainsString("The Actual String", "Something", "Actual"); 

        //Assertion Failed
        AssertContainsString("The Actual String", "Something", "Something Else"); 
    }

    public void AssertContainsString(string actual, params string[] expected)
    {

    }
}

我尝试了该CollectionAssert.Contains方法,但没有奏效。有没有一种快速的方法可以在不迭代expected字符串的情况下使用?

4

4 回答 4

2

我认为可以使用这个“StringAssert.Contains(actualString,containsubstring);” 在所有框架 .NET

于 2013-06-28T14:39:36.293 回答
1

如果在实际变量中找到预期数组的所有值,则返回 true:

bool foundall = expected.Except(actual.Split(' ')).Count()==0;

即使实际字符串中只包含一个值,也返回 true:

bool ans = expected.Except(actual.Split(' ')).Count() != expected.Length;
于 2012-06-13T11:56:27.010 回答
1

字符串类的扩展方法?

    public static bool AnyIn(this string s, params string[] values)
    {
        return values.Any(x => s.Contains(x));
    }

可以这样调用:

    string test = "The actual string";
    if(test.AnyIn("The") == true)   // success
    ...
    if(test.AnyIn("The", "actual", "string") == true)   // success
    ...
    if(test.AnyIn("The", "actual", "value") == true)   // success
    ...
    if(test.AnyIn("some", "value") == true)   // fail

或者也

    System.Diagnostics.Debug.Assert(test.AnyIn("some", "value"), "No expected string found"); // fail

当然将扩展方法放在静态类
中也在 Visual Studio 2010 控制台应用程序中尝试过

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication2
{
    class Program
    {
        static void Main()
        {
            string test = "The actual string";

            // Prints False
            bool result = test.AnyIn("other", "value");
            Console.WriteLine(result.ToString()); 

            // Prints True
            result = test.AnyIn("other", "The");
            Console.WriteLine(result.ToString()); 

            //  No Assert dialog here 
            System.Diagnostics.Debug.Assert(test.AnyIn("other", "The"), "No expected values found");

            //  Big Assert dialog here with message "No expected values found"
            System.Diagnostics.Debug.Assert(test.AnyIn("other", "The"), "No expected values found");

        }

    }

    static class ext
    {
        public static bool AnyIn(this string s, params string[] values)
        {
            return values.Any(x => s.Contains(x));
        }
    }
}

编辑:

可以通过这种方式更改扩展名来解决不同大小写的问题

public static bool AllIn(this string s, params string[] values)     
{         
     return values.Any(x => s.IndexOf(x + " ", StringComparison.CurrentCultureIgnoreCase) >= 0);     
}

但是,为了防止在预期字符串之一嵌入实际字符串时出现误报,您需要在实际字符串的末尾添加一个空格

string test = "The actual string ";  // notice the extra space added at the end
于 2012-06-13T11:59:17.823 回答
1

如果你这样做了

if (actual.Split(' ').Contains(expected)) return true;

但我认为你仍然需要迭代预期的

foreach (string ex in expected)
{
    if (actual.Split(' ').Contains(ex)) return true;
}

根据 Gene S 评论编辑

expected.Any(ex => actual.Split(' ').Contains(ex))

如果你愿意,可以使用糖,但没有节省处理器,它只会让它更难阅读。

于 2012-06-13T12:02:40.493 回答