Beispiel #1
0
        public void GraphiqueToStringTest()
        {
            Graphique target   = new Graphique();
            string    expected = "Graphique";
            string    actual;

            actual = target.ToString();
            Assert.AreEqual(expected, actual, "GraphiqueToStringTest");
        }
Beispiel #2
0
        public void GraphiqueConstructorTest()
        {
            Graphique target = new Graphique();

            Assert.IsNotNull(target, "GraphiqueConstructorTest");
        }