Description: The matrixcheckstests
class provides various methods for performing tests of class containing checks of matrices.
Method Name | Description |
---|---|
TestCheckMatrixIntegrityTrue | Test to check if the matrix integrity check returns true when the matrix has the correct form. |
TestCheckMatrixIntegrityFalse | Test to check if the matrix integrity check returns false when the matrix does not have the correct form. |
TestCheckMatrixSizesTrue | Test to check if the method correctly compares the sizes of two equal matrices. |
TestCheckMatrixSizesFalse1 | Test to check if the method correctly identifies that two matrices have different sizes. |
TestCheckMatrixSizesFalse2 | Alternative test to check if the method correctly identifies that two matrices have different sizes. |
TestCheckMatrixColumnTrue | Test to check if the column matrix check returns true when the given matrix is a column matrix. |
TestCheckMatrixColumnFalse | Test to check if the column matrix check returns false when the given matrix is not a column matrix. |
TestCheckMatrixRowTrue | Test to check if the row matrix check returns true when the given matrix is a row matrix. |
TestCheckMatrixRowFalse | Test to check if the row matrix check returns false when the given matrix is not a row matrix. |
TestCheckMatrixRectangularTrue | Test to check if the rectangular matrix check returns true when the given matrix is rectangular. |
TestCheckMatrixRectangularFalse | Test to check if the rectangular matrix check returns false when the given matrix is not rectangular. |
TestCheckMatrixSquareTrue | Test to check if the square matrix check returns true when the given matrix is a square matrix. |
TestCheckMatrixSquareFalse | Test to check if the square matrix check returns false when the given matrix is not a square matrix. |
TestCheckMatrixIdentityTrue | Test to check if the identity matrix check returns true when the given matrix is an identity matrix. |
TestCheckMatrixIdentityFalse | Test to check if the identity matrix check returns false when the given matrix is not an identity matrix. |
TestCheckMatrixDiagonalTrue | Test to check if the diagonal matrix check returns true when the given matrix is a diagonal matrix. |
TestCheckMatrixDiagonalFalse | Test to check if the diagonal matrix check returns false when the given matrix is not a diagonal matrix. |
TestCheckMatrixScalarTrue | Test to check if the scalar matrix check returns true when the given matrix is a scalar matrix. |
TestCheckMatrixScalarFalse | Test to check if the scalar matrix check returns false when the given matrix is not a scalar matrix. |
TestCheckMatrixNullTrue | Test to check if the null matrix check returns true when the given matrix is a null matrix. |
TestCheckMatrixNullFalse | Test to check if the null matrix check returns false when the given matrix is not a null matrix. |
TestCheckMatrixUpperTriangularTrue | Test to check if the upper triangular matrix check returns true when the given matrix is upper triangular. |
TestCheckMatrixUpperTriangularFalse | Test to check if the upper triangular matrix check returns false when the given matrix is not upper triangular. |
TestCheckMatrixLowerTriangularTrue | Test to check if the lower triangular matrix check returns true when the given matrix is lower triangular. |
TestCheckMatrixLowerTriangularFalse | Test to check if the lower triangular matrix check returns false when the given matrix is not lower triangular. |
TestCheckMatrixEqualityTrue | Test to check if the equality check returns true when two matrices are equal. |
TestCheckMatrixEqualityFalse | Test to check if the equality check returns false when two matrices are not equal. |
TestCheckMatrixBinaryTrue | Test to check if the binary matrix check returns true when the given matrix is binary. |
TestCheckMatrixBinaryFalse | Test to check if the binary matrix check returns false when the given matrix is not binary. |