public void TerminateBatching() { MyAdapter da = new MyAdapter(); NotSupportedException ex = Assert.Throws <NotSupportedException>(() => da.TerminateBatching()); Assert.Null(ex.InnerException); Assert.NotNull(ex.Message); }
public void TerminateBatching() { MyAdapter da = new MyAdapter(); try { da.TerminateBatching(); Assert.Fail("#1"); } catch (NotSupportedException ex) { Assert.AreEqual(typeof(NotSupportedException), ex.GetType(), "#2"); Assert.IsNull(ex.InnerException, "#3"); Assert.IsNotNull(ex.Message, "#4"); } }
public void TerminateBatching() { MyAdapter da = new MyAdapter(); try { da.TerminateBatching(); Assert.False(true); } catch (NotSupportedException ex) { Assert.Equal(typeof(NotSupportedException), ex.GetType()); Assert.Null(ex.InnerException); Assert.NotNull(ex.Message); } }
public void TerminateBatching () { MyAdapter da = new MyAdapter (); try { da.TerminateBatching (); Assert.Fail ("#1"); } catch (NotSupportedException ex) { Assert.AreEqual (typeof (NotSupportedException), ex.GetType (), "#2"); Assert.IsNull (ex.InnerException, "#3"); Assert.IsNotNull (ex.Message, "#4"); } }