using AspNetCoreSdkTests.Templates; using NUnit.Framework; using System.Collections.Generic; namespace AspNetCoreSdkTests { [TestFixture] public class SelfContained { [Test] [TestCaseSource(nameof(RestoreData))] public void Restore(Template template) { CollectionAssert.AreEquivalent(template.ExpectedObjFilesAfterRestore, template.ObjFilesAfterRestore); } public static IEnumerable