This repository was archived by the owner on Mar 13, 2020. It is now read-only.

Description
In accordance with specification there is bijection between complex values and their encodings. It might be useful then to test serialization-deserialization code against following property:
deserialize(serialize(a)) == a.
You may use a library for property-based testing to automate it, e.g. proptest or quickcheck.