Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
org.blueberry.tests
Unit Tests

Unit Tests

Identifier:
org.blueberry.test.org.blueberry.tests

Description:
The test extension point allows plugins to contribute unit tests to the BlueBerry Platform. The tests should be written with the help of the Poco CppUnit library.

Configuration Markup:

<!ELEMENT extension (test)+>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT test EMPTY>

<!ATTLIST test

description CDATA #IMPLIED

class       CDATA #REQUIRED

id          CDATA #REQUIRED

uitest      (true | false) >

  • description -
  • class -
  • id -
  • uitest -

Examples:
Following is an example of a test declaration.


      <extension id="SampleTestSuite" point="org.blueberry.tests">
         <test id="SampleTest" class="xyz::SampleTest"/>
      </extension>