Beispiel #1
0
                public void Update_should_set_the_value_on_the_Entry()
                {
                    _contentType.Update(_entry, _record);
                    _entry.Quantity.ShouldNotBeNull();
// ReSharper disable PossibleInvalidOperationException
                    _entry.Quantity.Value.ShouldBeEqualTo(15.964m);
// ReSharper restore PossibleInvalidOperationException
                }
Beispiel #2
0
                public void Update_should_set_the_value_on_the_Entry()
                {
                    _contentType.Update(_entry, _record);
                    _entry.DollarAmount.ShouldNotBeNull();
// ReSharper disable PossibleInvalidOperationException
                    _entry.DollarAmount.Value.ShouldBeEqualTo(47111500000.00m);
// ReSharper restore PossibleInvalidOperationException
                }
Beispiel #3
0
 public void Update_should_set_the_value_on_the_Entry()
 {
     _contentType.Update(_entry, _record);
     _entry.AccountName.ShouldBeEqualTo(Input.Substring(1));
 }
Beispiel #4
0
 public void Update_should_not_set_the_value_on_the_Entry()
 {
     _contentType.Update(_entry, _record);
     _entry.Quantity.ShouldBeNull();
 }
Beispiel #5
0
 public void Update_should_set_the_value_on_the_Entry()
 {
     _contentType.Update(_entry, _record);
     _entry.ItemDescription.ShouldBeEqualTo(Input.Substring(1));
 }
Beispiel #6
0
 public void Update_should_set_the_value_on_the_Entry()
 {
     _contentType.Update(_entry, _record);
     _entry.Date.ShouldBeEqualTo(new DateTime(2006, 6, 9));
 }
Beispiel #7
0
 public void Update_should_set_the_value_on_the_Entry()
 {
     _contentType.Update(_entry, _record);
     _entry.Status.ShouldBeEqualTo(QIFGet.API.Domain.NamedConstants.ClearedStatus.Reconciled);
 }