public void TestConstructorNoSuchComponentKindException()
 {
     string message = null;
     NoSuchComponentKindException testNoSuchComponentKindException = new NoSuchComponentKindException(message);
     Assert.IsNotNull(testNoSuchComponentKindException, "Constructor of type, NoSuchComponentKindException failed to create instance.");
     Assert.Fail("Create or modify test(s).");
 }
 public void TearDown()
 {
     _unitUnderTest = null;
 }
 public void SetUp()
 {
     string message = null;
     _unitUnderTest = new NoSuchComponentKindException(message);
 }