Esempio n. 1
0
 RightWrongRowsComplexMatrixComplexMatrixSubtraction() :
     base(
         expected: new ArgumentException(
             message: (string)Reflector.ExecuteStaticMember(
                 typeof(ImplementationServices),
                 "GetResourceString",
                 new string[] { "STR_EXCEPT_MAT_SUBTRACT_ALL_DIMS_MUST_MATCH" }),
             paramName: "right"),
         left: TestableComplexMatrix14.Get(),
         right: TestableComplexMatrix18.Get()
         )
 {
 }
Esempio n. 2
0
 RightWrongRowsComplexMatrixDoubleMatrixElementWiseMultiplication() :
     base(
         expected: new ArgumentException(
             message: (string)Reflector.ExecuteStaticMember(
                 typeof(ImplementationServices),
                 "GetResourceString",
                 new string[] { "STR_EXCEPT_MAT_ELEMENT_WISE_ALL_DIMS_MUST_MATCH" }),
             paramName: "right"),
         left: TestableComplexMatrix14.Get(),
         right: TestableDoubleMatrix18.Get()
         )
 {
 }