TestNG源代码分析:依赖管理的实现 2018-03-19 1 背景 当case之间有依赖关系,有依赖关系的case,它们的执行顺序是有限制的.TestNG提供了依赖管理功能 2 基础理论 这个执行顺序可以用拓扑排序算法实现. 只要是有向无环图就能被拓扑排序,拓扑排序维基典型实现算法: L ← Empty list that will contain the sorted elements S ← Set of all nodes with no incoming edges while S…