protected AlongDimensionNotDataOperationFieldMax() :
     base(
         expected: new ArgumentException(
             message: (string)Reflector.ExecuteStaticMember(
                 typeof(ImplementationServices),
                 "GetResourceString",
                 new string[] { "STR_EXCEPT_NOT_FIELD_OF_DATA_OPERATION" }),
             paramName: "dataOperation"),
         data: TestableDoubleMatrix32.Get(),
         dataOperation: (DataOperation)(-1))
 {
 }
Ejemplo n.º 2
0
 protected NotSortDirectionFieldSort() :
     base(
         expected: new ArgumentException(
             message: (string)Reflector.ExecuteStaticMember(
                 typeof(ImplementationServices),
                 "GetResourceString",
                 new string[] { "STR_EXCEPT_NOT_FIELD_OF_SORT_DIRECTION" }),
             paramName: "sortDirection"),
         data: TestableDoubleMatrix32.Get(),
         sortDirection: (SortDirection)(-1))
 {
 }
Ejemplo n.º 3
0
 protected AlongDimensionOutOfRangeProbabilitiesQuantile01(
     DataOperation dataOperation) :
     base(
         expected: new ArgumentException(
             message: String.Format((string)Reflector.ExecuteStaticMember(
                                        typeof(ImplementationServices),
                                        "GetResourceString",
                                        new string[] { "STR_EXCEPT_PAR_ENTRIES_NOT_IN_CLOSED_INTERVAL" }), 0, 1),
             paramName: "probabilities"),
         data: TestableDoubleMatrix32.Get(),
         probabilities: DoubleMatrix.Dense(1, 2, new double[2] { 0, 1.1 }),
         dataOperation: dataOperation)
 {
 }