public DebuggerEvent AssertEvent(DebuggerEventType type)
        {
            DebuggerEvent e = AssertEvent();

            if (e.Type != type)
            {
                Assert.Fail("Received event {0}, but expected {1}.", e, type);
            }

            return(e);
        }
Example #2
0
 public DebuggerEvent(DebuggerEventType type, object data, object data2)
 {
     this.Type = type;
     this.Data = data;
     this.Data2 = data2;
 }
Example #3
0
 public DebuggerEvent(DebuggerEventType type, object data)
     : this(type, data, null)
 {
 }
Example #4
0
 public DebuggerEvent(DebuggerEventType type)
     : this(type, null, null)
 {
 }
Example #5
0
        public DebuggerEvent AssertEvent(DebuggerEventType type)
        {
            DebuggerEvent e = AssertEvent ();
            if (e.Type != type)
                Assert.Fail ("Received event {0}, but expected {1}.", e, type);

            return e;
        }
 public DebuggerEvent(DebuggerEventType type, object data, object data2)
 {
     this.Type  = type;
     this.Data  = data;
     this.Data2 = data2;
 }
 public DebuggerEvent(DebuggerEventType type, object data)
     : this(type, data, null)
 {
 }
 public DebuggerEvent(DebuggerEventType type)
     : this(type, null, null)
 {
 }