Ejemplo n.º 1
0
        public void TestCandleStickVectorIndexOutOfBoundsException()
        {
            candle_stick_vector points = new candle_stick_vector();

            try{
                System.Console.WriteLine(points[0]);
                Assert.Fail("No exception thrown!");
            }catch (System.ArgumentOutOfRangeException) {}
        }
Ejemplo n.º 2
0
        public void TestCandleStickVectorIndexOutOfBoundsException()
        {
            candle_stick_vector points = new candle_stick_vector();

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