Exemplo n.º 1
0
 public void CheckIdentityInt(int value)
 {
     Assert.Equal(value, IdentityHelper.Get <int>()(value));
     Assert.Equal(value, IdentityHelper.GetExp <int>().Compile()(value));
 }
Exemplo n.º 2
0
 public void CheckIdentityString(string value)
 {
     Assert.Equal(value, IdentityHelper.Get <string>()(value));
     Assert.Equal(value, IdentityHelper.GetExp <string>().Compile()(value));
 }