1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| [DataSource("System.Data.SqlClient", "Data Source=JULIUS\\SQLEXPRESS;Initial Catalog=SGPTesting;Integrated Security=True", "Test1", DataAccessMethod.Sequential), TestMethod]
public void TestMethod1()
{
int? int2=null;
int2 = int.Parse(TestContext.DataRow["NumInt"].ToString()); //Là il me retourne un {}.
if (TestContext.DataRow["NumInt"] != null) // ici ca marche grace à la conditon. Mais j'aimerai faire sans.
{
int2 = int.Parse(TestContext.DataRow["NumInt"].ToString()) ;
}
else
{
int2 = null;
}
} |
Partager