Beispiel #1
0
        public void TestBarVectorIndexOutOfBoundsException()
        {
            bar_vector points = new bar_vector();

            try{
                System.Console.WriteLine(points[0]);
                Assert.Fail("No exception thrown!");
            }catch (System.ArgumentOutOfRangeException) {}
        }
Beispiel #2
0
        public void TestBarVectorIndexOutOfBoundsException()
        {
            bar_vector points = new bar_vector();

            System.Console.WriteLine(points[0]);
        }