Beispiel #1
0
 public void ShouldThrowOnNonexistingFile()
 {
     Assert.Throws <RecoverableException>(() =>
     {
         currentMachine = new Machine();
         device         = new SVDParser(Path.Combine("invalid", "path.svd"), currentMachine.SystemBus);
     });
 }
Beispiel #2
0
 public void Init()
 {
     currentMachine = new Machine();
 }