We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#!/usr/bin/env dub /+ dub.sdl: dependency "fluent-asserts" version="~>0.13.0" dependency "dateparser" version="~>3.0.3" +/ import fluent.asserts; void main() { int[] wa = new int[1442]; int[] da = new int[6953]; auto dl = da.length / 5; //Assert.lessThan(wa.length, dl+3); // normal assertion failure Assert. lessThan(wa.length, dl+3); // strange core.exception.RangeError@../../../.dub/packages/fluent-asserts-0.13.3/fluent-asserts/source/fluentasserts/core/results.d(1192): Range violation }
Please notice it's the spaces Assert. lessThan(...) that triggered this Range violation.
Assert. lessThan(...)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Please notice it's the spaces
Assert. lessThan(...)
that triggered this Range violation.The text was updated successfully, but these errors were encountered: