public void AlgorithmeToStringTest() { Algorithme target = new Algorithme(); string expected = "Algorithme"; string actual; actual = target.ToString(); Assert.AreEqual(expected, actual, "AlgorithmeToStringTest"); }
public void AlgorithmeConstructorTest() { Algorithme target = new Algorithme(); Assert.IsNotNull(target, "AlgorithmeConstructorTest"); }