describe('When calling the "info" method', () => {
        it('will be provided with a message and a title', () => {
            sut.info('the-message', 'the-title');

            expect((mockedToastyService.info as sinon.SinonStub).calledOnce).to.be.true;