tcbot-engine/src/main/java/org/apache/ignite/tcbot/engine/ui/ShortTestFailureUi.java [64:78]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        return this;
    }

    public static String extractTest(String s) {
        String testShort = s.trim();
        Matcher matcher = TEST_CLASS_AND_METHOD_PATTERN.matcher(testShort);
        return matcher.find() ? matcher.group(0) : null;
    }

    public static String extractSuite(String s) {
        String suiteShort = s.trim();
        String[] suiteComps = suiteShort.split("\\.");
        if (suiteComps.length > 1)
            return suiteComps[suiteComps.length - 1];
        return null;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



tcbot-engine/src/main/java/org/apache/ignite/tcbot/engine/ui/ShortTestUi.java [54:68]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        return this;
    }

    public static String extractTest(String s) {
        String testShort = s.trim();
        Matcher matcher = TEST_CLASS_AND_METHOD_PATTERN.matcher(testShort);
        return matcher.find() ? matcher.group(0) : null;
    }

    public static String extractSuite(String s) {
        String suiteShort = s.trim();
        String[] suiteComps = suiteShort.split("\\.");
        if (suiteComps.length > 1)
            return suiteComps[suiteComps.length - 1];
        return null;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



