GoogleTestAdapter.TestAdapter.Framework.VsTestFrameworkReporter.ReportTestsFound C# (CSharp) Method

ReportTestsFound() public method

public ReportTestsFound ( IEnumerable testCases ) : void
testCases IEnumerable
return void
        public void ReportTestsFound(IEnumerable<TestCase> testCases)
        {
            lock (Lock)
            {
                foreach (TestCase testCase in testCases)
                {
                    _sink.SendTestCase(testCase.ToVsTestCase());
                }
            }
        }