Exemplo n.º 1
0
        private void showResultsGeneratedWithTestLog(Dictionary <string, string> testInfo, string fileContent)
        {
            TestReader testCaseReader = new TestReader();

            TestResultDecipher result = testCaseReader.runTest(testInfo, fileContent);

            result.assesTestResult();

            outputText.Invoke(new Action(() =>
            {
                resultToScreen(result);
            }));
        }