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