Link to home
Start Free TrialLog in
Avatar of khacduyst
khacduyst

asked on

Help about JDeveloper 10g

pls show me how to use JUnit in Jdeveloper( some link , ebook or simple demo)  and how can i export test result to file (.txt, .xml, .html......) by ant  ? Thanks .
Avatar of dberner9
dberner9
Flag of United States of America image

Avatar of khacduyst
khacduyst

ASKER

and how can i export test result to  file (.txt, .xml, .html......) by ant  ?  Config build.xml     ?
ok, the last one.
i use IDE Jdeveloper 10g,   write a simple method and test with jUnit , that's ok.  But when i use ant to export test result to file ...
i don't know how to fix this error , pls help me ! thanks very much .



Buildfile: C:\Documents and Settings\tuanpa\projects\JBean\testJDeveloper\build.xml

BUILD FAILED
C:\Documents and Settings\tuanpa\projects\JBean\testJDeveloper\build.xml:55: Could not find a valid processor version implementation from oracle.xml.jaxp.JXSAXTransformerFactory

Total time: 0 seconds
How do you imagine that we can help you without you posting the offending line in your build.xml? Please post line 55 from build.xml
     <junitreport todir="results">
        <fileset dir="results">
            <include name="TUAN-*.xml"/>
         </fileset>
      <report todir="results" format="frames"/>
    </junitreport>

ASKER CERTIFIED SOLUTION
Avatar of Tommy Braas
Tommy Braas
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ok, thanks