public void ThenTheFollowingVouchersShouldBeGenerated(Table table) { var voucherSet = new VoucherSet(_order); foreach (var tableRow in table.Rows) { Assert.AreEqual(voucherSet.VouchersOf(int.Parse(tableRow[0])).Count, int.Parse(tableRow[1])); } }