tests = ""
    testsNo = 0
    errorsNo = 0
    failuresNo = 0
    skippedNo = 0
    time = "0"
    timestamp = "0"
    suiteProperties = Utilities.getSuitePropertiesFromDictionary(
        dictionaries[suite])
    suitePropertiesStr = Utilities.getSuiteProperties(suiteProperties)

    for i in dictionaries[suite]:  # iterating testcase
        testsNo += 1
        if Utilities.isFailed(i["status"]):
            failuresNo += 1
        elif Utilities.isSkipped(i["status"]):
            skippedNo += 1
        elif Utilities.isError(i["status"]):
            errorsNo += 1

        test = Utilities.getTestCaseFromDictionary(i, suiteProperties)
        tests += test

    suitString = Utilities.getTestSuite(suite, str(testsNo), str(errorsNo),
                                        str(failuresNo), str(skippedNo), time,
                                        timestamp, suitePropertiesStr, tests)
    aGroupsStringsList = aGroupsStringsList + suitString

finalXML = Utilities.getTestSuites(aGroupsStringsList)

print "\nParsing finished, result file: " + str(