public void SetUp()
        {
            _contentProcessorMock = new Mock<IContentProcessor>();
            _wordsRepositoryMock = new Mock<IWordsRepository>();
            _textFileReaderMock = new Mock<ITextFileReader>();
            _inputOutputStub = new InputOutputStub();
            _launcher = new ContentProcessorLauncher(_contentProcessorMock.Object, _wordsRepositoryMock.Object, _textFileReaderMock.Object, _inputOutputStub);

            SetUpContent(SampleContent);
            SetUpNegativeWords(_negativeWords);
        }
 public void SetUp()
 {
     _inputOutput = new InputOutputStub();
     _commandProcessor = new ContentConsole.ContentProcessor.ContentProcessor(_inputOutput);
 }