예제 #1
0
        public void MotorcycleCanBeFilledWith2GallonsOfGas()
        {
            Motorcycle motorcycle = new Motorcycle();

            int actual = motorcycle.FillWithGas();

            Assert.Equal(2, actual);
        }