Ejemplo n.º 1
0
        public void テスト()
        {
            TestContext.Run((int taxRate, int price, int expected) =>
            {
                var sut = new ConsumptionTax(taxRate);

                sut.Apply(price).Is(expected);
            });
        }
Ejemplo n.º 2
0
 public void オブジェクトの生成()
 {
     var sut = new ConsumptionTax(5);
 }