it('should return an empty object if no getDefaultProps() method was specified in the extended Class.', () => {
        const instance = new ComponentWithoutDefaults();

        expect(instance.getDefaultProps()).to.be.an('object');
    });