Beispiel #1
0
        public virtual void TestDollarInParam()
		{
			NeoDatis.Odb.Core.NeoDatisError e = new NeoDatis.Odb.Core.NeoDatisError(0, "x @1 y"
				);
			e.AddParameter("foo$bar");
			AssertEquals("0:x foo$bar y", e.ToString());
		}
Beispiel #2
0
 /// <summary>Submitted by Tom Davies (tgdavies) Source forge Feature request 1900092</summary>
 public virtual void TestDollarInParam()
 {
     NeoDatis.Odb.Core.NeoDatisError e = new NeoDatis.Odb.Core.NeoDatisError(0, "x @1 y"
                                                                             );
     e.AddParameter("foo$bar");
     AssertEquals("0:x foo$bar y", e.ToString());
 }
Beispiel #3
0
        public virtual void Test3()
		{
			NeoDatis.Odb.Core.NeoDatisError e = new NeoDatis.Odb.Core.NeoDatisError(0, "x y");
			e.AddParameter("param1");
			e.AddParameter("param2");
			e.AddParameter("param3");
			e.AddParameter("param4");
			AssertEquals("0:x y", e.ToString());
		}
Beispiel #4
0
 public virtual void Test3()
 {
     NeoDatis.Odb.Core.NeoDatisError e = new NeoDatis.Odb.Core.NeoDatisError(0, "x y");
     e.AddParameter("param1");
     e.AddParameter("param2");
     e.AddParameter("param3");
     e.AddParameter("param4");
     AssertEquals("0:x y", e.ToString());
 }
Beispiel #5
0
        public virtual void Test4()
		{
			NeoDatis.Odb.Core.NeoDatisError e = new NeoDatis.Odb.Core.NeoDatisError(12, "x @1 @2 @3 @5 y"
				);
			AssertEquals("12:x @1 @2 @3 @5 y", e.ToString());
		}
Beispiel #6
0
 public virtual void Test4()
 {
     NeoDatis.Odb.Core.NeoDatisError e = new NeoDatis.Odb.Core.NeoDatisError(12, "x @1 @2 @3 @5 y"
                                                                             );
     AssertEquals("12:x @1 @2 @3 @5 y", e.ToString());
 }