public void SetUp()
        {
            _sampleModulePath1Relative = FileSystemPath.Parse("module1.dll");
            _sampleModulePath1         = _sampleModulePath1Relative.MakeAbsoluteBasedOn(FileSystemPath.Parse(Environment.CurrentDirectory));
            _sampleModulePath2         = FileSystemPath.Parse("module2.dll").MakeAbsoluteBasedOn(FileSystemPath.Parse(Environment.CurrentDirectory));

            _errors = new List <string>();
            _infos  = new List <string>();
            _sut    = new DebuggingControlIni(error => _errors.Add(error), info => _infos.Add(info));
        }