Thrown when the request Windows SDK can not be found
Inheritance: System.ApplicationException
コード例 #1
0
        public void ShouldSetMessage()
        {
            var subject = new SdkNotFoundException("TESTING");

            Assert.That(subject.Message, Contains.Substring("TESTING"));
        }
コード例 #2
0
 public void ShouldSetMessage()
 {
     var subject = new SdkNotFoundException("TESTING");
     Assert.That(subject.Message, Contains.Substring("TESTING"));
 }