public void TestException()
 {
     Assert.Throws<ArgumentNullException>(() => new ReportPdu(0, ErrorCode.NoError, 0, null));
     Assert.Throws<ArgumentNullException>(() => new ReportPdu(new Tuple<int, byte[]>(0, new byte[] { 0 }), null));
     var pdu = new ReportPdu(0, ErrorCode.NoError, 0, new List<Variable>());
     Assert.Throws<ArgumentNullException>(() => pdu.AppendBytesTo(null));
     Assert.AreEqual("REPORT PDU: seq: 0; status: 0; index: 0; variable count: 0", pdu.ToString());
 }
Beispiel #2
0
        public void TestException()
        {
            Assert.Throws <ArgumentNullException>(() => new ReportPdu(0, ErrorCode.NoError, 0, null));
            Assert.Throws <ArgumentNullException>(() => new ReportPdu(null));
            var pdu = new ReportPdu(0, ErrorCode.NoError, 0, new List <Variable>());

            Assert.Throws <ArgumentNullException>(() => pdu.AppendBytesTo(null));
            Assert.AreEqual("REPORT PDU: seq: 0; status: 0; index: 0; variable count: 0", pdu.ToString());
        }