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) {} }
public void TestCandleStickVectorIndexOutOfBoundsException() { candle_stick_vector points = new candle_stick_vector(); System.Console.WriteLine(points[0]); }