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