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

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