15 references to GetTestDataValue
Microsoft.AspNetCore.App.UnitTests (15)
TestData.cs (15)
323public static string GetSharedFxVersion() => GetTestDataValue("SharedFxVersion"); 325public static string GetDefaultNetCoreTargetFramework() => GetTestDataValue("DefaultNetCoreTargetFramework"); 327public static string GetMicrosoftNETCoreAppVersion() => GetTestDataValue("MicrosoftNETCoreAppRefVersion"); 329public static string GetReferencePackSharedFxVersion() => GetTestDataValue("ReferencePackSharedFxVersion"); 331public static string GetRepositoryCommit() => GetTestDataValue("RepositoryCommit"); 333public static string GetSharedFxRuntimeIdentifier() => GetTestDataValue("TargetRuntimeIdentifier"); 335public static string GetSharedFrameworkBinariesFromRepo() => GetTestDataValue("SharedFrameworkBinariesFromRepo"); 337public static string GetSharedFxDependencies() => GetTestDataValue("SharedFxDependencies"); 339public static string GetTargetingPackDependencies() => GetTestDataValue("TargetingPackDependencies"); 341public static string GetRuntimeTargetingPackDependencies() => GetTestDataValue("RuntimeTargetingPackDependencies"); 343public static string GetAspNetCoreTargetingPackDependencies() => GetTestDataValue("AspNetCoreTargetingPackDependencies"); 345public static string GetPackagesFolder() => GetTestDataValue("PackagesFolder"); 347public static string GetPackageLayoutRoot() => GetTestDataValue("PackageLayoutRoot"); 349public static bool VerifyAncmBinary() => string.Equals(GetTestDataValue("VerifyAncmBinary"), "true", StringComparison.OrdinalIgnoreCase); 351public static bool VerifyPackageAssemblyVersions() => string.Equals(GetTestDataValue("VerifyPackageAssemblyVersions"), "true", StringComparison.OrdinalIgnoreCase);