public void TestCleanup()
        {
            _autoUpdaterCommandCreator = null;

            _loggerMock = null;
        }
        public void TestInitialize()
        {
            TestCleanup();

            _settings = new Settings();
            _settings.Global = new GlobalSettings()
            {
                CheckIntervalMinutes = 5
            };

            _nowGetterMock = new NowGetterMock();
            _checkTimerMock = new CheckTimerMock();
            _configurationConverterMock = new ConfigurationConverterMock();
            _commandBuilderMock = new CommandBuilderMock();
            _loggerMock = new LoggerMock();

            _autoUpdaterCommandCreator = new AutoUpdaterCommandCreator(_checkTimerMock, _configurationConverterMock, _commandBuilderMock, _nowGetterMock, _loggerMock);
        }