14 references to LazySource
Microsoft.ML.CodeAnalyzer.Tests (14)
Code\BestFriendOnPublicDeclarationTest.cs (2)
18private readonly Lazy<string> _sourceAttribute = TestUtils.LazySource("BestFriendAttribute.cs"); 19private readonly Lazy<string> _sourceDeclaration = TestUtils.LazySource("BestFriendOnPublicDeclaration.cs");
Code\BestFriendTest.cs (3)
26private readonly Lazy<string> _sourceAttribute = TestUtils.LazySource("BestFriendAttribute.cs"); 27private readonly Lazy<string> _sourceDeclaration = TestUtils.LazySource("BestFriendDeclaration.cs"); 28private readonly Lazy<string> _sourceUser = TestUtils.LazySource("BestFriendUser.cs");
Code\ContractsCheckTest.cs (9)
20private readonly Lazy<string> _source = TestUtils.LazySource("ContractsCheckResource.cs"); 21private readonly Lazy<string> _sourceContracts = TestUtils.LazySource("Contracts.cs"); 22private readonly Lazy<string> _sourceFriend = TestUtils.LazySource("BestFriendAttribute.cs"); 89private readonly Lazy<string> _sourcePreFix = TestUtils.LazySource("ContractsCheckBeforeFix.cs"); 90private readonly Lazy<string> _sourcePostFix = TestUtils.LazySource("ContractsCheckAfterFix.cs"); 92private readonly Lazy<string> _sourceArgAttr = TestUtils.LazySource("ArgumentAttribute.cs"); 93private readonly Lazy<string> _sourceArgType = TestUtils.LazySource("ArgumentType.cs"); 94private readonly Lazy<string> _sourceBestAttr = TestUtils.LazySource("BestFriendAttribute.cs"); 95private readonly Lazy<string> _sourceDefArgAttr = TestUtils.LazySource("DefaultArgumentAttribute.cs");