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

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