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
Obviously, DiceKit should have complete tests using the Swift Package Manager and XCTest
The text was updated successfully, but these errors were encountered:
There are 6 more tests that need to be implemented: WeightedDieTests.testDoubleAverageResultProperty WeightedDieTests.testAverageResultProperty WeightedDieTests.testRollingMultipleTimes DiceTests.testRolling DiceTests.testRollingMultipleTimes DiceTests.testChanceInRange Notice that 5/6 of them should have been written before this version, because they don't test new features
There are 6 more tests that need to be implemented:
WeightedDieTests.testDoubleAverageResultProperty
WeightedDieTests.testAverageResultProperty
WeightedDieTests.testRollingMultipleTimes
DiceTests.testRolling
DiceTests.testRollingMultipleTimes
DiceTests.testChanceInRange
Notice that 5/6 of them should have been written before this version, because they don't test new features
Originally posted by @Samasaur1 in #62 (comment)
Sorry, something went wrong.
a4a62f6 has now implemented the last test introduced in #62, which means that there are only 5 more tests to implement:
Additionally, ever since v0.18.0 (#66), everything is a struct, so all the .copy() and init(copyOf:) calls are deprecated and redundant.
struct
.copy()
init(copyOf:)
This is even more important if we want to catch bugs like #88 — we should test all the functions implemented in the extensions to Rollable
Rollable
No branches or pull requests
Obviously, DiceKit should have complete tests using the Swift Package Manager and XCTest
The text was updated successfully, but these errors were encountered: