2 writes to _wrapped
Microsoft.Build.Framework.UnitTests (2)
TestAssemblyInfo.cs (2)
60=> _wrapped = wrapped; 168=> _wrapped = info.GetValue<IXunitTestCase>("wr");
28 references to _wrapped
Microsoft.Build.Framework.UnitTests (28)
TestAssemblyInfo.cs (28)
62public Type[] SkipExceptions => _wrapped.SkipExceptions; 64public string SkipReason => _wrapped.SkipReason; 66public Type SkipType => _wrapped.SkipType; 68public string SkipUnless => _wrapped.SkipUnless; 70public string SkipWhen => _wrapped.SkipWhen; 72public IXunitTestClass TestClass => _wrapped.TestClass; 74public int TestClassMetadataToken => _wrapped.TestClassMetadataToken; 76public string TestClassName => _wrapped.TestClassName; 78public string TestClassSimpleName => _wrapped.TestClassSimpleName; 80public IXunitTestCollection TestCollection => _wrapped.TestCollection; 82public IXunitTestMethod TestMethod => _wrapped.TestMethod; 84public int TestMethodMetadataToken => _wrapped.TestMethodMetadataToken; 86public string TestMethodName => _wrapped.TestMethodName; 88public string[] TestMethodParameterTypesVSTest => _wrapped.TestMethodParameterTypesVSTest; 90public string TestMethodReturnTypeVSTest => _wrapped.TestMethodReturnTypeVSTest; 92public int Timeout => _wrapped.Timeout; 94public bool Explicit => _wrapped.Explicit; 96public string SourceFilePath => _wrapped.SourceFilePath; 98public int? SourceLineNumber => _wrapped.SourceLineNumber; 100public string TestCaseDisplayName => _wrapped.TestCaseDisplayName; 102public string TestClassNamespace => _wrapped.TestClassNamespace; 104public int? TestMethodArity => _wrapped.TestMethodArity; 106public IReadOnlyDictionary<string, IReadOnlyCollection<string>> Traits => _wrapped.Traits; 108public string UniqueID => _wrapped.UniqueID; 120public ValueTask<IReadOnlyCollection<IXunitTest>> CreateTests() => _wrapped.CreateTests(); 125_wrapped.PostInvoke(); 132_wrapped.PreInvoke(); 165=> info.AddValue("wr", _wrapped);