override fun hashCode()

in src/main/kotlin/com/jetbrains/plugin/jtreg/configuration/model/TestData.kt [96:122]


    override fun hashCode(): Int {
        return Comparing.hashcode(envVars) xor
                Comparing.hashcode(parameters) xor
                Comparing.hashcode(vmParameters) xor
                Comparing.hashcode(workingDirectory) xor
                Comparing.hashcode(passParentEnvs) xor
                Comparing.hashcode(testSearchScope) xor
                Comparing.hashcode(testKind) xor
                Comparing.hashcode(packageName) xor
                Comparing.hashcode(className) xor
                Comparing.hashcode(testGroup) xor
                Comparing.hashcode(testMode) xor
                Comparing.hashcode(testCategory) xor
                Comparing.hashcode(reportDir) xor
                Comparing.hashcode(excludeList) xor
                Comparing.hashcode(concurrency) xor
                Comparing.hashcode(ignoreMode) xor
                Comparing.hashcode(lock) xor
                Comparing.hashcode(timeoutFactor) xor
                Comparing.hashcode(timeLimit) xor
                Comparing.hashcode(xmlReport) xor
                Comparing.hashcode(keyword) xor
                Comparing.hashcode(weston) xor
                Comparing.hashcode(vmSettings) xor
                Comparing.hashcode(verboseOutput) xor
                Comparing.hashcode(repeat)
    }