Beispiel #1
0
 public void Rosenbrock(
     [PexAssumeUnderTest]Benchmarks target,
     double x1,
     double x2
 )
 {
     target.Rosenbrock(x1, x2);
     // TODO: add assertions to method BenchmarksTest.Rosenbrock(Benchmarks, Double, Double)
 }
Beispiel #2
0
 public void Powell(
     [PexAssumeUnderTest]Benchmarks target,
     double x1,
     double x2
 )
 {
     target.Powell(x1, x2);
     // TODO: add assertions to method BenchmarksTest.Powell(Benchmarks, Double, Double)
 }
Beispiel #3
0
 public void FreudensteinAndRoth(
     [PexAssumeUnderTest]Benchmarks target,
     double x1,
     double x2
 )
 {
     target.FreudensteinAndRoth(x1, x2);
     // TODO: add assertions to method BenchmarksTest.FreudensteinAndRoth(Benchmarks, Double, Double)
 }
Beispiel #4
0
 public void HelicalValley(
     [PexAssumeUnderTest]Benchmarks target,
     double x1,
     double x2,
     double x3
 )
 {
     target.HelicalValley(x1, x2, x3);
     // TODO: add assertions to method BenchmarksTest.HelicalValley(Benchmarks, Double, Double, Double)
 }
Beispiel #5
0
 public void WoodFunction(
     [PexAssumeUnderTest]Benchmarks target,
     double x1,
     double x2,
     double x3,
     double x4
 )
 {
     target.WoodFunction(x1, x2, x3, x4);
     // TODO: add assertions to method BenchmarksTest.WoodFunction(Benchmarks, Double, Double, Double, Double)
 }