SpicyOwl

Results 5 issues of SpicyOwl

Hi, I detect a flaky test under testGenerateSearchWeightString using NonDex(https://github.com/TestingResearchIllinois/NonDex). The problem was caused by the non-deterministic behavior of HashMap, and I used LinkedHashMap to solve that. Please let me...

Similar situation to [PR149](https://github.com/apache/atlas/pull/149), testGenerateSolrQueryString2TypeNames has non-deterministic behavior due to HashSet. I changed HashSet to LinkedHashSet for a serializable order.

Similar situation to [PR149](https://github.com/apache/atlas/pull/149), testGetTopTermsRandom3 and testGetTopTermsRandom5 will express non-deterministic behavior due to the nature of HashMap.

Hi, edu.uci.ics.jung.algorithms.shortestpath.TestMinimumSpanningTree.testDAG is expressing a non-deterministic behavior under NonDex(https://github.com/TestingResearchIllinois/NonDex), because **MinimumSpanningTree** is using hashset & hashmap for implementation. Thus the fix would be replacing hash-components with tree-components, which ensure the...

Hi, I used Nondex(https://github.com/TestingResearchIllinois/NonDex) on the project and found [checkTemplateNegociationDefault] does not have a uniform behavior. So I made some changes to the test to make it pass all possible...