using System; using System.Collections.Generic; using System.Linq; using System.Text; using UnitTestSharp; namespace TestsForUnitTestSharp { public class StackFrameTests : TestFixture { #region IsNonsenseFrame public void Works() { StackFrame frame = new StackFrame(null, 10, "Hi"); Check(frame.IsNonsenseFrame()); } #endregion public void NullSystemFrame() { CheckThrow(typeof(System.Exception)); StackFrame frame = new StackFrame(null); } } }