public void WhenInitializedWith_MessageAndInnerExceptionConstructor() { var exception = new AlpacaValueNotSetException("message", new Exception()); Assert.Equal(_expectedErrorCode, exception.AlpacaErrorCode); }
public void WhenInitializedWith_EmptyConstructor() { var exception = new AlpacaValueNotSetException(); Assert.Equal(_expectedErrorCode, exception.AlpacaErrorCode); }