15 references to GetTestDataValue
Microsoft.AspNetCore.App.UnitTests (15)
TestData.cs (15)
305public static string GetSharedFxVersion() => GetTestDataValue("SharedFxVersion"); 307public static string GetDefaultNetCoreTargetFramework() => GetTestDataValue("DefaultNetCoreTargetFramework"); 309public static string GetMicrosoftNETCoreAppVersion() => GetTestDataValue("MicrosoftNETCoreAppRefVersion"); 311public static string GetReferencePackSharedFxVersion() => GetTestDataValue("ReferencePackSharedFxVersion"); 313public static string GetRepositoryCommit() => GetTestDataValue("RepositoryCommit"); 315public static string GetSharedFxRuntimeIdentifier() => GetTestDataValue("TargetRuntimeIdentifier"); 317public static string GetSharedFrameworkBinariesFromRepo() => GetTestDataValue("SharedFrameworkBinariesFromRepo"); 319public static string GetSharedFxDependencies() => GetTestDataValue("SharedFxDependencies"); 321public static string GetTargetingPackDependencies() => GetTestDataValue("TargetingPackDependencies"); 323public static string GetRuntimeTargetingPackDependencies() => GetTestDataValue("RuntimeTargetingPackDependencies"); 325public static string GetAspNetCoreTargetingPackDependencies() => GetTestDataValue("AspNetCoreTargetingPackDependencies"); 327public static string GetPackagesFolder() => GetTestDataValue("PackagesFolder"); 329public static string GetPackageLayoutRoot() => GetTestDataValue("PackageLayoutRoot"); 331public static bool VerifyAncmBinary() => string.Equals(GetTestDataValue("VerifyAncmBinary"), "true", StringComparison.OrdinalIgnoreCase); 333public static bool VerifyPackageAssemblyVersions() => string.Equals(GetTestDataValue("VerifyPackageAssemblyVersions"), "true", StringComparison.OrdinalIgnoreCase);