Home | History | Annotate | Download | only in resources
      1 name: SingleSuite
      2 verbose: 2
      3 parallel: false
      4 threadCount: 4
      5 dataProviderThreadCount: 3
      6 
      7 packages:
      8   - name: test.testng355.org.apache.tapestry5
      9     include: [Foo, Foo2]
     10     exclude: [Bar]
     11   - name: test.testng355.org.apache.tapestry5.dom
     12 
     13 listeners:
     14   - test.invokedmethodlistener.MyListener
     15 
     16 parameters: { n: 42, p: 10, s: "a b c", t: "a,b" }
     17 
     18 methodSelectors:
     19   - className: org.testng.internal.XmlMethodSelector
     20     priority: 1
     21   - expression: groups.containsKey("test1")
     22     language: beanshell
     23     
     24 tests:
     25   - name: Test3
     26     includedGroups: [A, B]
     27     excludedGroups: [C, D]
     28     metaGroups: { a: [ b, d] }
     29     packages: [ com.example1, com.example2 ]
     30     parameters: { n: 43, z: foo }
     31     methodSelectors:
     32       - className: org.testng.internal.XmlMethodSelector
     33         priority: 1
     34       - expression: groups.containsKey("test1")
     35         language: beanshell
     36 
     37   - name: Test1
     38     classes:
     39       - name: test.tmp.A
     40         includedMethods: [test1, test2]
     41         excludedMethods: [test3]
     42       - test.tmp.B
     43 
     44   - name: Test2
     45     classes:
     46       - test.tmp.B
     47 
     48 
     49