public void MathematiquesToStringTest()
        {
            Mathematiques target   = new Mathematiques();
            string        expected = "Mathematiques";
            string        actual;

            actual = target.ToString();
            Assert.AreEqual(expected, actual, "MathematiquesToStringTest");
        }
        public void MathematiquesConstructorTest()
        {
            Mathematiques target = new Mathematiques();

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