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

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