public void TestClassExists()
 {
     // Assert
     UtilsHelper.ClassExists(typeof(FrmVehicule).Assembly, "VehiculeAMoteur").Should().BeTrue("La classe n'existe pas");
     // Idem que
     //Assert.IsTrue(UtilsHelper.ClassExists(typeof(FrmVehicule).Assembly, "VehiculeAMoteur"));
 }
 public void TestClassExists()
 {
     // Assert
     UtilsHelper.ClassExists(typeof(FrmVehicule).Assembly, "VehiculeRoulant").Should().BeTrue("La classe n'existe pas");
 }