it('should return an empty object if no getInitialState() method was present.', () => {
        const instanceWithoutDefaults = new ComponentWithoutDefaults();

        expect(instanceWithoutDefaults.getInitialState()).to.be.an('object');
    });