- Test
Rational
normalize properly when youapply
the class. Spoiler by David: You want to test that multiplying both numerator and denominator by the same integer (non-zero) value, you get the same normalized value you started with. - Create a class
Natural
for natural numbers so that you can't possibly create an instance ofNatural
with a non positive value. Implement addition and multiplication. - Write property based tests for
Natural
s addition.
- Enhance
Rational.+
to support biggerInt
values. Hint: Use mcmc. (by Adrià) - Design a class Json that can represent strings, booleans, numbers, nulls, objects and arrays
- Implement a function
Json.asString()
that returns the string implementation of your Json and a functionJson.parse(s: String): Try[Json]
that tries to parse a string into an instance ofJson
. - Write property based tests of
parse
andasString
. You will need to define anArbitrary[Json]
and that will require combinators we still don't have. Try to generalize them properly to be used in other contexts. Hint: Generate random strings that do not contain quotes and random integers for numbers (don't try to make floating point arithmetic work here).
- Implement a
Rational
class incom.agillogy.wpbtl.examples.main
undersrc/test
as a case class of the numerator and the denominator. - Implement the operator
+
onRational
. - Write property based tests of the sum of rationals. You'll need a way of creating an
Arbitrary[Rational]
. Usepair
andmap
to build one.
-
Rewrite your
Arbitrary[Rational]
to avoid the unnecessary creation of aTuple2
.- Clue: Create a new combinator not tied to Rational. See the
TODO
comments in the source code
- Clue: Create a new combinator not tied to Rational. See the
-
Create combinators like the one you created for
Rational
for arities 3 and 4. -
Rewrite the
pair
combinator to avoid code repetition with the ones you just wrote.
Remember: Advanced tasks won't be generally solved in this repository
- Somehow generalize the combinators you created to combine 2, 3 or 4 instances of
Arbitrary
to any number of instances. If you can't reason about the limits of such generalization.
- Separate example tests (which test
sum
) from the own library tests (which testforAll
) - Read these blog entries about testing:
- Write property based tests of string concatenation. Think about what properties to test and write tests as usage examples of the library.
Remember: Advanced tasks won't be generally solved in this repository
-
Write property based tests about
forAll
: "For all properties of integers, if I check that property, then the outcome has these properties."- Clue:
forAll(intPropertyArb){ val result = Try(forAll(arbInt){intPropertyArb}) // Assertions about the result }