it(`returns ${param.result} for ${param.addr} in network ${param.ctor}`, function () {
                const ip = new IPv4(...param.ctor);

                expect(ip.belongsToSubnet(param.addr)).to.equal(param.result);
            });