示例#1
0
 public Adapter Constructor01(Distributions target)
 {
     Adapter target01 = new Adapter(target);
     return target01;
     // TODO: add assertions to method AdapterTest.Constructor01(Distributions)
 }
示例#2
0
 public Adapter Constructor02()
 {
     Adapter target = new Adapter();
     return target;
     // TODO: add assertions to method AdapterTest.Constructor02()
 }
示例#3
0
 public Adapter Constructor(Adaptee adaptee, double dt)
 {
     Adapter target = new Adapter(adaptee, dt);
     return target;
     // TODO: add assertions to method AdapterTest.Constructor(Adaptee, Double)
 }