#3135 void staff
        print("The expected oracle is : " + testCases[i].testOutcome)
        print("The actual oracle is : " + results['name'])
        testCases[i].testResult = testCases[i].testOutcome.strip(
        ) == results['name'].strip()
        print(testCases[i].testResult)
    if testCases[i].testMethod.strip() == 'static_get_summoner_spell':
        results = rWatcher.static_get_summoner_spell(testCases[i].testInput)
        print("The expected oracle is : " + testCases[i].testOutcome)
        print("The actual oracle is : " + results['name'])
        testCases[i].testResult = testCases[i].testOutcome.strip(
        ) == results['name'].strip()
        print(testCases[i].testResult)
    if testCases[i].testMethod.strip() == 'static_get_mastery':
        results = rWatcher.static_get_mastery(testCases[i].testInput)
        print("The expected oracle is : " + testCases[i].testOutcome)
        print("The actual oracle is : " + results['name'])
        testCases[i].testResult = testCases[i].testOutcome.strip(
        ) == results['name'].strip()
        print(testCases[i].testResult)
    if testCases[i].testMethod.strip() == 'static_get_rune':
        results = rWatcher.static_get_rune(testCases[i].testInput)
        print("The expected oracle is : " + testCases[i].testOutcome)
        print("The actual oracle is : " + results['name'])
        testCases[i].testResult = testCases[i].testOutcome.strip(
        ) == results['name'].strip()
        #print(testCases[i].testResult)

report = reportCreate(testCases)
webbrowser.open_new_tab(report)