Extra plugins for the nose testing framework to load test case from a plan file.
USAGE: nosetests --with-plan-loader --plan-file PATH_OF_PLAN_FILE --loop 10

planfile content:
[tests]
packagename.modulename.classname.testcasename1 = 3
packagename.modulename.classname.testcasename2 = 5
  
1: allow to custom a test plan file. the plan file can define the test cases name list  and the executed  loop count in one loop. All tests will be executed from top to end follow it's own loop count.
2: allow to define the test cycle number. the test will be executed cyclically until exceed the cycle number. default only executed 1 cycle.
3: set timeout limitation(seconds) for each test method


tests from python env:
from customnoseplugins.planloader import PlanLoaderPlugin
nose.run(argv=[--with-plan-loader', --plan-file', 'PATH_OF_PLAN_FILE', '--loop', '100'], addplugins=[PlanLoaderPlugin()])
