/
diev
/
FransBouma-DocNet
Обзор
Документация
Войти
/
diev
/
FransBouma-DocNet
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/MarkdownDeepTests/DocNetMode.cs
28 строк
745 B
Frans Bouma
Fixes #84
06 мар 2019, 12:47
06 мар 2019, 12:47
a81e067
Код
Авторство
О чём код?
using System; using System.Collections.Generic; using System.Linq; using System.Text; using NUnit.Framework; using MarkdownDeep; using System.Reflection; namespace MarkdownDeepTests { [TestFixture] class DocNetModeTests { public static IEnumerable<TestCaseData> GetTests() { return Utils.GetTests("docnetmode"); } // Make sure you copy the AutoHeaderIDTests.cs file to c:\temp, as it's used in one of the tests, which uses an absolute path for the snippet feature // a relative path would have been preferable but the tests are run in a temp folder so they don't know the path of the source. [Test, TestCaseSource("GetTests")] public void Test(string resourceName) { Utils.RunResourceTest(resourceName); } } }