public static TestSpecList ToSpecList(this List <ExportedAgileTestPlatformSpec> agileTestPlatformSpecs)
        {
            TestSpecList tsl = new TestSpecList();

            tsl.AddRange(agileTestPlatformSpecs.Select(aitem => (TestSpec)aitem));
            return(tsl);
        }
 public static TestSpecList ToSpecList(this List<ExportedAgileTestPlatformSpec> agileTestPlatformSpecs)
 {
     TestSpecList tsl = new TestSpecList();
     tsl.AddRange(agileTestPlatformSpecs.Select(aitem => (TestSpec)aitem));
     return tsl;
 }