15 references to GetTestDataValue
Microsoft.AspNetCore.App.UnitTests (15)
TestData.cs (15)
322public static string GetSharedFxVersion() => GetTestDataValue("SharedFxVersion"); 324public static string GetDefaultNetCoreTargetFramework() => GetTestDataValue("DefaultNetCoreTargetFramework"); 326public static string GetMicrosoftNETCoreAppVersion() => GetTestDataValue("MicrosoftNETCoreAppRefVersion"); 328public static string GetReferencePackSharedFxVersion() => GetTestDataValue("ReferencePackSharedFxVersion"); 330public static string GetRepositoryCommit() => GetTestDataValue("RepositoryCommit"); 332public static string GetSharedFxRuntimeIdentifier() => GetTestDataValue("TargetRuntimeIdentifier"); 334public static string GetSharedFrameworkBinariesFromRepo() => GetTestDataValue("SharedFrameworkBinariesFromRepo"); 336public static string GetSharedFxDependencies() => GetTestDataValue("SharedFxDependencies"); 338public static string GetTargetingPackDependencies() => GetTestDataValue("TargetingPackDependencies"); 340public static string GetRuntimeTargetingPackDependencies() => GetTestDataValue("RuntimeTargetingPackDependencies"); 342public static string GetAspNetCoreTargetingPackDependencies() => GetTestDataValue("AspNetCoreTargetingPackDependencies"); 344public static string GetPackagesFolder() => GetTestDataValue("PackagesFolder"); 346public static string GetPackageLayoutRoot() => GetTestDataValue("PackageLayoutRoot"); 348public static bool VerifyAncmBinary() => string.Equals(GetTestDataValue("VerifyAncmBinary"), "true", StringComparison.OrdinalIgnoreCase); 350public static bool VerifyPackageAssemblyVersions() => string.Equals(GetTestDataValue("VerifyPackageAssemblyVersions"), "true", StringComparison.OrdinalIgnoreCase);