Hi All,

FOSSology has established test frameworks and standard reports.  The reporting 
standard is the unit report format.  This varies depending on what is being 
tested:

*         c code: CUnit

*         PHP code: phpunit, or simpletest, phpunit is preferred for straight 
unit tests. By itself, phpunit cannot test UI's.

*         ui: simepletest.  Only simpletest has a way to test a browser, but it 
can't deal with javascript updates to the screen.

If you don't use one of the existing test frameworks, then whatever you choose 
must produce a xml report in junit format.  The definition for the junit report 
format can be found on the fossology wiki at: 
http://fossology.org/test:junit_format

It is strongly suggested that you use one of the existing test frameworks to 
create tests.  If you choose not to, a suggested method to produce junit report 
formats is to wrap all test cases in PHUnit.  By running PHPUnit with 
--log-junit flag, the results will be in junit format.

Thanks for your support and compliance with these test reporting standards.
Mary
_______________________________________________
fossology mailing list
fossology@fossology.org
http://fossology.org/mailman/listinfo/fossology

Reply via email to