org.testinium.spi
Interface INodesSorter

All Known Implementing Classes:
DFS

public interface INodesSorter

INodesSorter is used to sort the nodes graph and return a list of ordered methods to invoke. The element at position 0 will first be invoked, then 1, ..etc

Version:
1.0
Author:
Thierry Janaudy janaudy@testinium.org

Method Summary
 java.util.List<INode> processNodesGraph(java.util.Collection<INode> nodesList)
          processNodesGraph is the method you should implement to provide your own sorting algorithm
 

Method Detail

processNodesGraph

java.util.List<INode> processNodesGraph(java.util.Collection<INode> nodesList)
                                        throws java.lang.Exception
processNodesGraph is the method you should implement to provide your own sorting algorithm

Parameters:
nodesList -
Returns:
a sorted list of nodes
Throws:
java.lang.Exception