Esempio n. 1
0
 public void ToStringTest()
 {
     string code = "function( x , y ){ return x + y; }";
     DBCode target = new DBCode(code); // TODO: Initialize to an appropriate value
     target.ToString().Should().Be(code);
 }
Esempio n. 2
0
 void element_code(string name, DBCode code)
 {
     element_code(name, code.Code);
 }
Esempio n. 3
0
 public void DBCodeConstructorTest()
 {
     string code = "function( x , y ){ return x + y; }";
     DBCode target = new DBCode(code);
 }