IsTrue() public static method

Asserts that a condition is true. If the condition is true the method throws an .
public static IsTrue ( bool condition ) : void
condition bool The evaluated condition
return void
 public void then_each_result_contains_at_least_a_property()
 {
     foreach (var result in this.Result)
     {
         Assert.IsTrue(result.Properties.Count > 0);
     }
 }
 public void then_Result_contains_at_least_a_result()
 {
     Assert.IsTrue(this.Result.Properties.Count > 0);
 }