-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOrderProcessorTests.cs
45 lines (38 loc) · 1.24 KB
/
OrderProcessorTests.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Testability.UnitTests
{
[TestClass]
public class OrderProcessorTests
{
//METHODNAME_CONDITION_EXPECTATION
[TestMethod]
[ExpectedException(typeof(InvalidOperationException))]
public void Process_OrderIsAlreadyShipped_ThrowsAnException()
{
var orderProcessor = new OrderProcessor(new FakeShippingCalculator());
var order = new Order
{
Shipment = new Shipment()
};
orderProcessor.Process(order);
}
[TestMethod]
public void Process_OrderIsNotShipped_ShouldSetTheShipmentPropertyOfTheOrder()
{
var orderProcessor = new OrderProcessor(new FakeShippingCalculator());
var order = new Order();
orderProcessor.Process(order);
Assert.IsTrue(order.IsShipped);
Assert.AreEqual(1, order.Shipment.Cost);
Assert.AreEqual(DateTime.Today.AddDays(1), order.Shipment.ShippingDate);
}
}
public class FakeShippingCalculator : IShippingCalculator
{
public float CalculateShipping(Order order)
{
return 1;
}
}
}