Exemplo n.º 1
0
 public void getLocalContentIntTest()
 {
     Variabel target = new Variabel(); // TODO: Initialize to an appropriate value
     target.Type = "int";
     target.Text = "5";
     Decimal expected = 5M;
     decimal actual;
     target.getLocalContent();
     actual = target.Number;
     Assert.AreEqual(actual, expected);
 }