public void SummaryTest_revenue_with_4_period() { List <int> Revenue = new List <int> { 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21 }; var target = new UserProfitDaily(); int[] expect = { 50, 66, 60 }; int[] actual = target.Summary(Revenue, 4); CollectionAssert.AreEqual(expect, actual); }
public void SummaryTest_cost_with_3_period() { List <int> Cost = new List <int> { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 }; var target = new UserProfitDaily(); int[] expect = { 6, 15, 24, 21 }; int[] actual = target.Summary(Cost, 3); CollectionAssert.AreEqual(expect, actual); }
public void SummarySheetTest_revenue_with_4_period() { Dictionary <string, List <int> > sheet = new Dictionary <string, List <int> > { { "Id", new List <int> { 1, 2, 3, 4, 5, 6, 7, 8, 10, 11 } }, { "Cost", new List <int> { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 } }, { "Revenue", new List <int> { 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21 } }, { "SellPrice", new List <int> { 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31 } } }; var target = new UserProfitDaily(); int[] expect = { 50, 66, 60 }; int[] actual = target.SummarySheet(sheet, "Revenue", 4); CollectionAssert.AreEqual(expect, actual); }