public void ARB_PREISTest() { TR_ARBEIT arb = new TR_ARBEIT(); decimal expected = new Decimal(2.2); arb.ARB_PREIS = expected; Assert.AreEqual(expected, arb.ARB_PREIS); }
public void ARB_IDTest() { TR_ARBEIT arb = new TR_ARBEIT(); int expected = 1; arb.ARB_ID = expected; Assert.AreEqual(expected, arb.ARB_ID); }
public void ARB_BEZEICHNUNGTest() { TR_ARBEIT arb = new TR_ARBEIT(); string expected = "arbeit"; arb.ARB_BEZEICHNUNG= expected; Assert.AreEqual(expected, arb.ARB_BEZEICHNUNG); }
public void TR_ARBEITConstructorTest() { TR_ARBEIT target = new TR_ARBEIT(); Assert.IsInstanceOfType(target, typeof(TR_ARBEIT)); }
public void TR_ARBEITTest() { TZ_ARBEITLISTE al = new TZ_ARBEITLISTE(); TR_ARBEIT expected = new TR_ARBEIT(); expected.ARB_ID = 1; al.TR_ARBEIT= expected; Assert.AreEqual(expected, al.TR_ARBEIT); }
/// <summary> /// Deprecated Method for adding a new object to the TR_ARBEIT EntitySet. Consider using the .Add method of the associated ObjectSet<T> property instead. /// </summary> public void AddToTR_ARBEIT(TR_ARBEIT tR_ARBEIT) { base.AddObject("TR_ARBEIT", tR_ARBEIT); }
/// <summary> /// Create a new TR_ARBEIT object. /// </summary> /// <param name="aRB_ID">Initial value of the ARB_ID property.</param> public static TR_ARBEIT CreateTR_ARBEIT(global::System.Int32 aRB_ID) { TR_ARBEIT tR_ARBEIT = new TR_ARBEIT(); tR_ARBEIT.ARB_ID = aRB_ID; return tR_ARBEIT; }