If you're still interested in seeing our Emma coverage with the java code highlighted (as well as all the code being run through the system tests rather than just the Undo.java), the data is here
I just realized, that in the import button for the general settings
page that I simply modified part of the code that tries to import a
lot of strange things like URLs and JAL files. We don't do any actual
testing for this since I just left it the way it was with a change to
get a string from a normal file chooser. We can't test for it since
it's impossible to get to (I don't know what a JAL file is and the URL
part doesn't work with a file chooser). I didn't take code coverage
into consideration when I modified this part originally.
I don't think I can get this part to look good on emma without going
in and removing this code, but I take it we can't make any
modifications to the code now, even if it's just removing lines?
I'm just going to ask dalbey about it and see what he says.
On Wed, Jun 4, 2008 at 3:18 PM, Bill Hess wrote:
> I've already talked to Terence, but to make it easy, here is the whole
> coverage report directory.
>
> I just realized, that in the import button for the general settings
> page that I simply modified part of the code that tries to import a
> lot of strange things like URLs and JAL files. We don't do any actual
> testing for this since I just left it the way it was with a change to
> get a string from a normal file chooser. We can't test for it since
> it's impossible to get to (I don't know what a JAL file is and the URL
> part doesn't work with a file chooser). I didn't take code coverage
> into consideration when I modified this part originally.
>
> I don't think I can get this part to look good on emma without going
> in and removing this code, but I take it we can't make any
> modifications to the code now, even if it's just removing lines?
>
You can modify your build.xml file so that the javac tag looks like this:
<target name="compile" depends="setup" description="Compiles the source files">
<javac srcdir="${src}"
destdir="${bin}"
classpath="${lib};bluejext.jar"
source="1.5"
target="1.5"
debug="true"/>
</target>
Just add a new parameter: debug="true" after the target tag.
Jim:
You can modify your build.xml file so that the javac tag looks like this:
destdir="${bin}"
classpath="${lib};bluejext.jar"
source="1.5"
target="1.5"
debug="true"/>
Just add a new parameter: debug="true" after the target tag.
Thank you, Terence.
Your hard work makes it straightforward for me to verify your
calculations, and I agree you have met the criteria.
Well done.
--Mr. Dalbey
Thanks for everyone's hard work.
Bill