コード例 #1
0
 public void should_return_the_curve_with_the_correct_details()
 {
     foreach (var curve in returnedCurves)
     {
         CurveDataChecker.CompareContractWithSavedEntity(curve);
     }
 }
コード例 #2
0
        public void should_return_the_correct_vesrion_of_the_curve()
        {
            var curve = response.Content.ReadAsDataContract <Contracts.Curve>();

            CurveDataChecker.CompareContractWithSavedEntity(curve);
        }
コード例 #3
0
 public void should_create_an_instance_of_the_curve_in_the_database_with_the_correct_details()
 {
     CurveDataChecker.ConfirmEntitySaved(int.Parse(GetLocationHeader()[1]), curve);
 }