public void ConstructorWithNoArguments_ReturnsExpected() { EntityFrameworkException instance = new EntityFrameworkException(); Assert.IsNotNull(instance); }
public void ConstructorWithMessageAndInnerArguments_ReturnsExpected() { EntityFrameworkException instance = new EntityFrameworkException("message", new Exception()); Assert.IsNotNull(instance); }