You are viewing a plain text version of this content. The canonical link for it is here.
Posted to server-dev@james.apache.org by hb...@apache.org on 2002/10/18 00:09:56 UTC

cvs commit: jakarta-james/tests/src/conf sampleconf.xml

hbedi       2002/10/17 15:09:56

  Added:       tests/src/conf sampleconf.xml
  Log:
  sample test configuration file.
  
  Revision  Changes    Path
  1.1                  jakarta-james/tests/src/conf/sampleconf.xml
  
  Index: sampleconf.xml
  ===================================================================
  <!-- 
  Consists of test elements. Attributes of test element control how a
  test is assembled in a test suite and subelements of test control test
  configuration
  
  Test Element attributes
  =======================
  name: friendly test identifier
  async: true/false cause the test to run in a separate thread. This
    can be used to run concurrent tests.
  repetition: number of times the test is run
  class: test class name.
  
  Test Element Configuration
  ==========================
  test may be configurable.
  testsequence gives sequence of test operations that are called. This
  provides predictable test sequence and declarative include/exclude
  for tests.
  -->
  
  <testsuite>
  <test name="pop3test" async="false" repetition="5" class="org.apache.james.testing.POP3Test">
    <host>localhost</host>
    <username>test</username>
    <password>test</password>
  
    <!-- call these test methods -->
    <testsequence showStat="true">
      <testmethod>login</testmethod>
      <testmethod>fetchMsgsInfo</testmethod>
      <testmethod>fetchMsgs</testmethod>
      <testmethod>logout</testmethod>
    </testsequence>
  </test>
  </testsuite>
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>