Fixed broken unit tests caused by using RunSettings in new code

This commit is contained in:
David Karlaš 2017-10-25 15:21:43 +02:00
Родитель 709925815c
Коммит fef0967453
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -71,7 +71,7 @@ namespace NUnit.VisualStudio.TestAdapter.Tests.Fakes
IRunSettings IDiscoveryContext.RunSettings
{
get { throw new NotImplementedException(); }
get { return new FakeRunSettings(); }
}
#endregion

Просмотреть файл

@ -35,7 +35,7 @@ namespace NUnit.VisualStudio.TestAdapter.Tests.Fakes
public string SettingsXml
{
get { throw new NotImplementedException(); }
get { return string.Empty; }
}
}
}