Example #1
0
 public void ConvertsToBlockTest()
 {
     ItemType target = new ItemType(); // TODO: Passenden Wert initialisieren
     BlockType expected = null; // TODO: Passenden Wert initialisieren
     BlockType actual;
     target.ConvertsToBlock = expected;
     actual = target.ConvertsToBlock;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Überprüfen Sie die Richtigkeit dieser Testmethode.");
 }
Example #2
0
 public void ItemTypeConstructorTest()
 {
     ItemType target = new ItemType();
     Assert.Inconclusive("TODO: Code zum Überprüfen des Ziels implementieren");
 }