예제 #1
0
        public void CheckSelectedDropDownListNameTest()
        {
            // Arange version 1 checking for negative exception
            //Bets b = new Bets();
            //int send = -31;
            //string actual = b.GetLocationName(send);

            // Arange version 2 cheching for out of range in the list
            //Bets b = new Bets();
            //int send = 50;
            //string actual = b.GetLocationName(send);

            // Vesrion 3
            // Arange
            Bets b    = new Bets();
            int  send = 3;

            b.GetLocationName(send);
        }