public void sup()
 {
     sut = new Impl();
     Assert.That(sut.SID, Is.EqualTo(0));
     Assert.That(sut.Tippzahlen.Count, Is.EqualTo(0));
     //Assert.That(sut.IsEmpty() && sut.IsEmptyOrValid);
 }
 public void can_quick_with_SID_gt_0()
 {
     sut = new Impl{SID = 1}.quick() as ATippfeld;
     Assert.That(sut.Tippzahlen.Count, Is.EqualTo(1));
 }