public void ReplShouldCalculateBasketTotal() { var input = new MockInput(); var service = new MockService(); var repl = new REPL(input, service); var total = repl.Run(); Assert.AreEqual(8M, total); }
static void Main(string[] args) { REPL repl = new REPL(); repl.Run(); }