Exemplo n.º 1
0
 public bool Start_Experiment(string name)
 {
     try
     {
         _interop.StartExperiment(name);
         return(true);
     }
     catch
     {
         return(false);
     }
 }
Exemplo n.º 2
0
 public bool Start_Experiment(string name)
 {
     ValidateAndLog();
     try
     {
         _interop.StartExperiment(name);
         return(true);
     }
     catch
     {
         return(false);
     }
 }
Exemplo n.º 3
0
 public void when_interop_start_expriment()
 {
     interop.StartExperiment("Exp1");
     experimentsOnServer.ElementAt(0).Started.ShouldBeTrue();
 }