Example #1
0
 public void Transaction_InsertCustomChange_Throws()
 {
     Assert.Throws <InvalidOperationException>(() => {
         using (history.ContinueCurrentTransaction()) {
             history.InsertCustomChange(new FakeChangeToken());
         }
     });
 }