예제 #1
0
        static void Main(string[] args)
        {
            TestAssert test = new TestAssert();


            test.BuyItem(1, 100);


            test.BuyItem(-1, 100);


            test.BuyItem(1, -100);



            Console.ReadLine();
        }