gpt4 book ai didi

c# - FluentAssertions 断言已为重载运算符抛出异常

转载 作者:行者123 更新时间:2023-11-30 23:27:41 26 4
gpt4 key购买 nike

我一直在使用 FluentAssertions 进行单元测试,并开始研究断言是否正确抛出异常。我知道我可以使用 ExpectedExceptions 方法属性,但如果可能的话,我想学习 FluentAssertion 方法。

我有一个带有重载乘法运算符的 Matrix 类(针对此示例进行了简化):

public class Matrix
{
public int Rows { get; set; }
public int Columns { get; set; }
public float[,] Elements { get; set; }

public static Matrix operator *(Matrix m1, Matrix m2)
{
if (m1.Columns != m2.Rows)
{
throw new Exception("These matrices cant be multiplied");
}

return new Matrix(1, 2, new float[,] { {1, 2} });
}
}

我想测试异常情况。这是我目前所拥有的:

[TestMethod]
//[ExpectedException(typeof(Exception), "These matrices cant be multiplied")]
public void MatrixMultiplication_IncorrectMatrixSize_ExceptionTest()
{
// Arrange
var elementsA = new float[,]
{
{4, 7},
{6, 8}
};

var elementsB = new float[,]
{
{3, 0},
{1, 1},
{5, 2}
};

Matrix A = new Matrix() {Rows=2, Columns=2, Elements=elementsA);
Matrix B = new Matrix() {Rows=3, Columns=2, Elements=elementsB);

// Act
Func<Matrix, Matrix, Matrix> act = (mA, mB) => mA * mB;

// Assert
act(A,B).ShouldThrow<Exception>().WithInnerMessage("These matrices cant be multiplied");
}

我遇到的问题是 FluentAssertions 没有用于通用 FuncShouldThrow 扩展方法,我不确定是否或如何包装这在一个 Action 中。对于这种情况,是否可以以这种方式使用 FluentAssertions,或者我是否以不同的方式使用 FluentAssertions,或者我是否必须使用 ExpectedExceptions

最佳答案

为过度思考问题而欢呼......

像这样编写 TestMethod 使其工作:

[TestMethod]
public void MatrixMultiplication_IncorrectMatrixSize_ExceptionTest()
{
// Arrange
var elementsA = new float[,]
{
{4, 7},
{6, 8}
};

var elementsB = new float[,]
{
{3, 0},
{1, 1},
{5, 2}
};

Matrix A = new Matrix() {Rows=2, Columns=2, Elements=elementsA);
Matrix B = new Matrix() {Rows=3, Columns=2, Elements=elementsB);

// Act
Action act = () => { var x = A * B; };

// Assert
act.ShouldThrow<Exception>().WithMessage("These matrices cant be multiplied");
}

关于c# - FluentAssertions 断言已为重载运算符抛出异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36464385/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com