Inheritance: System.Data.Objects.DataClasses.EntityObject
 public void FZA_IDTest()
 {
     TR_FAHRZEUGART fzgArt = new TR_FAHRZEUGART();
     int expected = 1;
     fzgArt.FZA_ID = expected;
     Assert.AreEqual(expected, fzgArt.FZA_ID);
 }
 public void FZA_BEZEICHNUNGTest()
 {
     TR_FAHRZEUGART fzgArt = new TR_FAHRZEUGART();
     string expected = "Roller";
     fzgArt.FZA_BEZEICHNUNG = expected;
     Assert.AreEqual(expected, fzgArt.FZA_BEZEICHNUNG);
 }
 public void TR_FAHRZEUGARTConstructorTest()
 {
     TR_FAHRZEUGART target = new TR_FAHRZEUGART();
     Assert.IsInstanceOfType(target, typeof(TR_FAHRZEUGART));
 }
 public void FZA_KEYTest()
 {
     TR_FAHRZEUGART fzgArt = new TR_FAHRZEUGART();
     string expected = "ROL";
     fzgArt.FZA_KEY = expected;
     Assert.AreEqual(expected, fzgArt.FZA_KEY);
 }
 /// <summary>
 /// Deprecated Method for adding a new object to the TR_FAHRZEUGART EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToTR_FAHRZEUGART(TR_FAHRZEUGART tR_FAHRZEUGART)
 {
     base.AddObject("TR_FAHRZEUGART", tR_FAHRZEUGART);
 }
 /// <summary>
 /// Create a new TR_FAHRZEUGART object.
 /// </summary>
 /// <param name="fZA_ID">Initial value of the FZA_ID property.</param>
 /// <param name="fZA_BEZEICHNUNG">Initial value of the FZA_BEZEICHNUNG property.</param>
 /// <param name="fZA_KEY">Initial value of the FZA_KEY property.</param>
 public static TR_FAHRZEUGART CreateTR_FAHRZEUGART(global::System.Int32 fZA_ID, global::System.String fZA_BEZEICHNUNG, global::System.String fZA_KEY)
 {
     TR_FAHRZEUGART tR_FAHRZEUGART = new TR_FAHRZEUGART();
     tR_FAHRZEUGART.FZA_ID = fZA_ID;
     tR_FAHRZEUGART.FZA_BEZEICHNUNG = fZA_BEZEICHNUNG;
     tR_FAHRZEUGART.FZA_KEY = fZA_KEY;
     return tR_FAHRZEUGART;
 }
Example #7
0
 public void TR_FAHRZEUGARTTest()
 {
     T_FAHRZEUG fzg = new T_FAHRZEUG();
     TR_FAHRZEUGART expected = new TR_FAHRZEUGART();
     expected.FZA_ID = 1;
     fzg.TR_FAHRZEUGART = expected;
     Assert.AreEqual(expected, fzg.TR_FAHRZEUGART);
 }