Unit Test Results

Designed for use with JUnit and Ant .

Summary

TestsFailuresErrorsSuccess rateTime
2031099.51%35.458
Note: failures are anticipated and checked for with assertions while errors are unanticipated.

Packages

Note: package statistics are not computed recursively, they only sum up all of its testsuites numbers.
NameTestsErrorsFailuresTime(s)
org.eclipse.jst.jsp.core.tests2030135.458

Package org.eclipse.jst.jsp.core.tests

NameTestsErrorsFailuresTime(s)
JSPCoreTestSuite2030135.458
Back to top


TestCase JSPCoreTestSuite

NameStatusTypeTime(s)
testCleanupInsertTagsQuoteAttrsSuccess1.296
testCleanupInsertTagsSuccess0.078
testCleanupCompressEmptyElementTagsSuccess0.131
testCleanupHTMLFailureCleaned up document differs from the expected. Expected Contents: <HTML> <HEAD> <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <META name="GENERATOR" content="Mozilla/4.72 [en] (Windows NT 5.0; U) [Netscape]" /> <TITLE></TITLE> </HEAD> This is a page of some of the technical stuff that I've written using various programming languages. Click on the links to learn more about the projects or to see the source code.<BR> <I>Note: Feel free to copy, steal, modify, destroy what you will...</I><BR><BR> <HR> <H2> Programs and Utilities </H2> <UL> <LI><A href="makemake.html"> <I> Automatic Makefile Utility: </I></A> This generates a Makefile and updates it according to the files currently in your directory. Take a gander at the source here: <A href="makemake.c"> <I> makemake.c </I></A> <BR><BR> </LI><LI><A href="mailsort.pl" > <I> mail file sorter: </I> </A> This utility parses a mail file and creates another mail file containing only the messages specified by paramaters. For example, parse a mail archive file (old-mail-Jan-2000) and extract all of the messages from davek@yourmom.com or with the subject Marillion. This guy was whipped up in Perl. <BR><BR> </LI><LI><A href="electronicNotes.html" > <I> Electronic Notes: </I> </A> This is an original idea (gasp!) that I developed which is a system for keeping little reminders to yourself during the day and having them sent to you all in one convenient file via email at the end of the day. <BR><BR> </LI><LI><A href="header.html" > <I> C/C++ Header file to Implementation file converter: </I> </A> This is a very useful tool written in C++ that converts .h files to empty implementation (.C) files. <BR><BR> </LI><LI><A href="matrix.html" > <I> Matrix Manipulation Package: </I></A> This is a package that does all sorts of cool manipulations with matrices, such as Gaussian Elimination, Normal Equations, Vandermonde Matrices, Cholesky Factorization, Error Analysis, and more stuff than you would ever want to do with a matrix. It is written in good ol' C. <BR ><BR > </LI><LI> <A href="lisp.html" > <I>Set Operations: </I></A> <I></I> A program that performs set operations on a list. This is written in Lisp, of all things. There's also some examples of my own interpretations of some Lisp functions. Lisp is a good language for AI and things of that nature. It relies heavily on recursion, so it takes a different mindset to program in this language. But used correctly and for its intended purpose, Lisp is a very unique and powerful programming language. <BR ><BR > </LI><LI> <A href="loc.html" > <I> Lines Of Code Counter: </I></A><I></I> This is is LOC counter that I wrote in Perl that calculates the number of uncommented lines of code in a program. This works for any programming language as you can supply the comment character on the command line. This is an extremely useful program for use in software metrics. <BR abc="def"><BR abc="def" > </LI><LI><A href="linwin.html"> <I> Simple *nix to windows text converter </I></A> This takes files written in Linux (and in vi or an editor with automatic line breaks after every 80 or so chars) and formats it so it will display properly in Windows environment should you be forced to do so. Peruse (peruse, mind you. I don't want to see any <I>browsing</I>) the source here: <A href="linwin.c"> <I> linwin.c </I></A> <BR abc = "def"><BR abc = "def"> </LI><LI><B> Regression and Standard Deviation: </B> A math class written in Java using Object Oriented design principles. The main aspects of the program are for figuring out Standard Deviation and the Regression, when you input a set of x and y values. Regression calculations are often used in Software Metrics to to help in estimating length of code, and time spent on the project.<BR> <A href="RegressionCalc.html" > <I> RegressionCalc.java </I> </A> This is the main class that does the calculations. It calculates B1, B0, and r^2, which are all parameters of Regression. <BR abc= "def"> <A href="MathClass.html" > <I> MathClass.java </I> </A> This is simply a small class which calculates the mean and the standard deviation of a vector of numbers. This is used by the RegressionCalc class in its calculations. <BR abc ="def"> <A href="Regression.html" > <I> Regression.java </I> </A> This is basically the main routine, or where the program starts. It puts all of the input from the command line into two separate vectors for the x and y values.<BR><BR> An example of the usage of this program would be: <BR> If you had a history of data on your estimated Lines Of Code (LOC) per class, as well as the actual LOC per class, you could put these in the formula and find out the Regression of the data (or how far away each point is from the function line.) You would input the data for the estimated LOC, separated by a comma, and followed by the actual LOC. The result would be the regression calculation. <PRE> %java Regression 130 650 99 150 , 186 699 132 272 X Data = [ 130.0 650.0 99.0 150.0 ] Y Data = [ 186.0 699.0 132.0 272.0 ] N = 4 Beta0 = 72.6905030780361 Beta1 = 0.9701049443030667 rSquared = 2212.504697673689 </PRE> </LI></UL> <HR> <H2> Knowledge </H2> <UL> <LI><A href="vim.html"> <I> Espousing my love for vim! </I></A> vim just rocks, okay. Really. If I had to choose between, like, sex, or using vim--let's just say I'd be one masterful-editing monk. <BR><BR> </LI><LI> <A href="MBR-LILO.txt"> <I> Lost LILO? Recover.</I> </A> If you have Linux installed in a multi-boot environment, and you overwrite your MBR, you can lose LILO. I reinstalled Windows (hey, I needed to play Final Fantasy VIII!) and couldn't boot into Linux. Here's how I recovered. <BR><BR> </LI></UL><BODY></BODY> </HTML><HTML> </HTML> Actual Contents: <HTML> <HEAD> <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <META name="GENERATOR" content="Mozilla/4.72 [en] (Windows NT 5.0; U) [Netscape]" /> <TITLE></TITLE> </HEAD> This is a page of some of the technical stuff that I've written using various programming languages. Click on the links to learn more about the projects or to see the source code.<BR> <I>Note: Feel free to copy, steal, modify, destroy what you will...</I><BR><BR> <HR> <H2> Programs and Utilities </H2> <UL> <LI><A href="makemake.html"> <I> Automatic Makefile Utility: </I></A> This generates a Makefile and updates it according to the files currently in your directory. Take a gander at the source here: <A href="makemake.c"> <I> makemake.c </I></A> <BR><BR> </LI><LI><A href="mailsort.pl" > <I> mail file sorter: </I> </A> This utility parses a mail file and creates another mail file containing only the messages specified by paramaters. For example, parse a mail archive file (old-mail-Jan-2000) and extract all of the messages from davek@yourmom.com or with the subject Marillion. This guy was whipped up in Perl. <BR><BR> </LI><LI><A href="electronicNotes.html" > <I> Electronic Notes: </I> </A> This is an original idea (gasp!) that I developed which is a system for keeping little reminders to yourself during the day and having them sent to you all in one convenient file via email at the end of the day. <BR><BR> </LI><LI><A href="header.html" > <I> C/C++ Header file to Implementation file converter: </I> </A> This is a very useful tool written in C++ that converts .h files to empty implementation (.C) files. <BR><BR> </LI><LI><A href="matrix.html" > <I> Matrix Manipulation Package: </I></A> This is a package that does all sorts of cool manipulations with matrices, such as Gaussian Elimination, Normal Equations, Vandermonde Matrices, Cholesky Factorization, Error Analysis, and more stuff than you would ever want to do with a matrix. It is written in good ol' C. <BR ><BR > </LI><LI> <A href="lisp.html" > <I>Set Operations: </I></A> <I></I> A program that performs set operations on a list. This is written in Lisp, of all things. There's also some examples of my own interpretations of some Lisp functions. Lisp is a good language for AI and things of that nature. It relies heavily on recursion, so it takes a different mindset to program in this language. But used correctly and for its intended purpose, Lisp is a very unique and powerful programming language. <BR ><BR > </LI><LI> <A href="loc.html" > <I> Lines Of Code Counter: </I></A><I></I> This is is LOC counter that I wrote in Perl that calculates the number of uncommented lines of code in a program. This works for any programming language as you can supply the comment character on the command line. This is an extremely useful program for use in software metrics. <BR abc="def"><BR abc="def" > </LI><LI><A href="linwin.html"> <I> Simple *nix to windows text converter </I></A> This takes files written in Linux (and in vi or an editor with automatic line breaks after every 80 or so chars) and formats it so it will display properly in Windows environment should you be forced to do so. Peruse (peruse, mind you. I don't want to see any <I>browsing</I>) the source here: <A href="linwin.c"> <I> linwin.c </I></A> <BR abc = "def"><BR abc = "def"> </LI><LI><B> Regression and Standard Deviation: </B> A math class written in Java using Object Oriented design principles. The main aspects of the program are for figuring out Standard Deviation and the Regression, when you input a set of x and y values. Regression calculations are often used in Software Metrics to to help in estimating length of code, and time spent on the project.<BR> <A href="RegressionCalc.html" > <I> RegressionCalc.java </I> </A> This is the main class that does the calculations. It calculates B1, B0, and r^2, which are all parameters of Regression. <BR abc= "def"> <A href="MathClass.html" > <I> MathClass.java </I> </A> This is simply a small class which calculates the mean and the standard deviation of a vector of numbers. This is used by the RegressionCalc class in its calculations. <BR abc ="def"> <A href="Regression.html" > <I> Regression.java </I> </A> This is basically the main routine, or where the program starts. It puts all of the input from the command line into two separate vectors for the x and y values.<BR><BR> An example of the usage of this program would be: <BR> If you had a history of data on your estimated Lines Of Code (LOC) per class, as well as the actual LOC per class, you could put these in the formula and find out the Regression of the data (or how far away each point is from the function line.) You would input the data for the estimated LOC, separated by a comma, and followed by the actual LOC. The result would be the regression calculation. <PRE> %java Regression 130 650 99 150 , 186 699 132 272 X Data = [ 130.0 650.0 99.0 150.0 ] Y Data = [ 186.0 699.0 132.0 272.0 ] N = 4 Beta0 = 72.6905030780361 Beta1 = 0.9701049443030667 rSquared = 2212.504697673689 </PRE> </LI></UL> <HR> <H2> Knowledge </H2> <UL> <LI><A href="vim.html"> <I> Espousing my love for vim! </I></A> vim just rocks, okay. Really. If I had to choose between, like, sex, or using vim--let's just say I'd be one masterful-editing monk. <BR><BR> </LI><LI> <A href="MBR-LILO.txt"> <I> Lost LILO? Recover.</I> </A> If you have Linux installed in a multi-boot environment, and you overwrite your MBR, you can lose LILO. I reinstalled Windows (hey, I needed to play Final Fantasy VIII!) and couldn't boot into Linux. Here's how I recovered. <BR><BR> </LI></UL><BODY></BODY> <HTML> </HTML></HTML>

junit.framework.AssertionFailedError: Cleaned up document differs from the expected.
Expected Contents:
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<META name="GENERATOR" content="Mozilla/4.72 [en] (Windows NT 5.0; U) [Netscape]" />
<TITLE></TITLE>
</HEAD>

This is a page of some of the technical stuff that I've written using various
to see the source code.<BR>
<I>Note: Feel free to copy, steal, modify, destroy what you will...</I><BR><BR>
<HR>

<H2> Programs and Utilities </H2>
<UL>
<LI><A href="makemake.html"> <I> Automatic
Makefile Utility: </I></A> This generates a Makefile and updates it according
to the files currently in your directory.
Take a gander at the source here: <A
href="makemake.c"> <I> makemake.c
</I></A>

<BR><BR>
</LI><LI><A href="mailsort.pl" > <I>
mail file sorter: </I> </A>
This utility parses a mail file and creates another mail file containing only
the messages specified by paramaters. For example, parse a mail archive file
(old-mail-Jan-2000) and extract all of the messages from davek@yourmom.com or
with the subject Marillion. This guy was whipped up in Perl.
<BR><BR>

</LI><LI><A href="electronicNotes.html" > <I>
Electronic Notes: </I> </A> This is an original idea (gasp!) that I developed which is a
system for keeping little reminders to yourself during the day and having them
sent to you all in one convenient file via email at the end of the day.
<BR><BR>

</LI><LI><A href="header.html" > <I> C/C++ Header file
to Implementation file converter: </I> </A>
This is a very useful tool written in C++ that converts .h files to empty
implementation (.C) files.
<BR><BR>
</LI><LI><A href="matrix.html" > <I> Matrix Manipulation
Package: </I></A> This is a package that does all sorts of cool manipulations
with matrices, such as Gaussian Elimination, Normal Equations, Vandermonde
ever want to do with a matrix. It is written in good ol' C.

<BR ><BR >
</LI><LI>
<A href="lisp.html" > <I>Set Operations: </I></A> <I></I> A program that performs set
operations on a list. This is written in Lisp, of all things. There's also
some examples of my own interpretations of some Lisp functions. Lisp is a good
language for AI and things of that nature.
It relies heavily on recursion, so it takes a different
mindset to program in this language. But used correctly and for its intended
purpose, Lisp is a very unique and powerful programming language.
<BR ><BR >

</LI><LI>
<A href="loc.html" > <I> Lines Of Code Counter:
</I></A><I></I> This is is LOC counter that I wrote in Perl that calculates the number of
uncommented lines of code in a program. This works for any programming
language as you can supply the comment character on the command line. This is
an extremely useful program for use in software metrics.
<BR abc="def"><BR abc="def" >

</LI><LI><A href="linwin.html"> <I> Simple *nix to
windows text converter </I></A> This takes files written in Linux (and in vi or
an editor with automatic line breaks after every 80 or so chars) and
formats it so it will display properly in Windows environment should you be
forced to do so.
Peruse (peruse, mind you. I don't want to see any <I>browsing</I>) the source here: <A
href="linwin.c"> <I> linwin.c
</I></A>
<BR abc = "def"><BR abc = "def">


</LI><LI><B> Regression and Standard Deviation: </B>
A math class written in Java using Object Oriented design principles. The main
aspects of the program are for figuring out Standard Deviation and the
Regression, when you input a set of x and y values. Regression calculations
are often used in Software Metrics to to help in estimating length of code, and
time spent on the project.<BR>

<A href="RegressionCalc.html" >
<I> RegressionCalc.java </I> </A> This is the main class that does the
calculations. It calculates B1, B0, and r^2, which are all parameters of
Regression.
<BR abc= "def">
<A href="MathClass.html" >
<I> MathClass.java </I> </A> This is simply a small class which calculates the
mean and the standard deviation of a vector of numbers. This is used by the
RegressionCalc class in its calculations.
<BR abc ="def">
<A href="Regression.html" >
<I> Regression.java </I> </A> This is basically the main routine, or where the
program starts. It puts all of the input from the command line into two
separate vectors for the x and y values.<BR><BR>

An example of the usage of this program would be: <BR>
If you had a history of data on your estimated Lines Of Code (LOC) per class,
as well as the actual LOC per class, you could put these in the formula and
find out the Regression of the data (or how far away each point is from the
function line.)

You would input the data for the estimated LOC, separated by a comma, and
followed by the actual LOC. The result would be the regression calculation.
<PRE>
%java Regression 130 650 99 150 , 186 699 132 272

X Data = [ 130.0 650.0 99.0 150.0 ]
Y Data = [ 186.0 699.0 132.0 272.0 ]
N = 4
Beta0 = 72.6905030780361
Beta1 = 0.9701049443030667
rSquared = 2212.504697673689
</PRE>

</LI></UL>

<HR>
<H2> Knowledge </H2>
<UL>
<LI><A href="vim.html"> <I> Espousing my love
for vim! </I></A> vim just rocks, okay. Really. If I had to choose between,
like, sex, or using vim--let's just say I'd be one masterful-editing monk.
<BR><BR>


</LI><LI>
<A href="MBR-LILO.txt">
<I> Lost LILO? Recover.</I> </A> If you have Linux installed in a multi-boot
environment, and you overwrite your MBR, you can lose LILO. I reinstalled
Windows (hey, I needed to play Final Fantasy VIII!) and couldn't boot into
Linux. Here's how I recovered.
<BR><BR>



</LI></UL><BODY></BODY>
</HTML><HTML>
</HTML>
Actual Contents:
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<META name="GENERATOR" content="Mozilla/4.72 [en] (Windows NT 5.0; U) [Netscape]" />
<TITLE></TITLE>
</HEAD>

This is a page of some of the technical stuff that I've written using various
to see the source code.<BR>
<I>Note: Feel free to copy, steal, modify, destroy what you will...</I><BR><BR>
<HR>

<H2> Programs and Utilities </H2>
<UL>
<LI><A href="makemake.html"> <I> Automatic
Makefile Utility: </I></A> This generates a Makefile and updates it according
to the files currently in your directory.
Take a gander at the source here: <A
href="makemake.c"> <I> makemake.c
</I></A>

<BR><BR>
</LI><LI><A href="mailsort.pl" > <I>
mail file sorter: </I> </A>
This utility parses a mail file and creates another mail file containing only
the messages specified by paramaters. For example, parse a mail archive file
(old-mail-Jan-2000) and extract all of the messages from davek@yourmom.com or
with the subject Marillion. This guy was whipped up in Perl.
<BR><BR>

</LI><LI><A href="electronicNotes.html" > <I>
Electronic Notes: </I> </A> This is an original idea (gasp!) that I developed which is a
system for keeping little reminders to yourself during the day and having them
sent to you all in one convenient file via email at the end of the day.
<BR><BR>

</LI><LI><A href="header.html" > <I> C/C++ Header file
to Implementation file converter: </I> </A>
This is a very useful tool written in C++ that converts .h files to empty
implementation (.C) files.
<BR><BR>
</LI><LI><A href="matrix.html" > <I> Matrix Manipulation
Package: </I></A> This is a package that does all sorts of cool manipulations
with matrices, such as Gaussian Elimination, Normal Equations, Vandermonde
ever want to do with a matrix. It is written in good ol' C.

<BR ><BR >
</LI><LI>
<A href="lisp.html" > <I>Set Operations: </I></A> <I></I> A program that performs set
operations on a list. This is written in Lisp, of all things. There's also
some examples of my own interpretations of some Lisp functions. Lisp is a good
language for AI and things of that nature.
It relies heavily on recursion, so it takes a different
mindset to program in this language. But used correctly and for its intended
purpose, Lisp is a very unique and powerful programming language.
<BR ><BR >

</LI><LI>
<A href="loc.html" > <I> Lines Of Code Counter:
</I></A><I></I> This is is LOC counter that I wrote in Perl that calculates the number of
uncommented lines of code in a program. This works for any programming
language as you can supply the comment character on the command line. This is
an extremely useful program for use in software metrics.
<BR abc="def"><BR abc="def" >

</LI><LI><A href="linwin.html"> <I> Simple *nix to
windows text converter </I></A> This takes files written in Linux (and in vi or
an editor with automatic line breaks after every 80 or so chars) and
formats it so it will display properly in Windows environment should you be
forced to do so.
Peruse (peruse, mind you. I don't want to see any <I>browsing</I>) the source here: <A
href="linwin.c"> <I> linwin.c
</I></A>
<BR abc = "def"><BR abc = "def">


</LI><LI><B> Regression and Standard Deviation: </B>
A math class written in Java using Object Oriented design principles. The main
aspects of the program are for figuring out Standard Deviation and the
Regression, when you input a set of x and y values. Regression calculations
are often used in Software Metrics to to help in estimating length of code, and
time spent on the project.<BR>

<A href="RegressionCalc.html" >
<I> RegressionCalc.java </I> </A> This is the main class that does the
calculations. It calculates B1, B0, and r^2, which are all parameters of
Regression.
<BR abc= "def">
<A href="MathClass.html" >
<I> MathClass.java </I> </A> This is simply a small class which calculates the
mean and the standard deviation of a vector of numbers. This is used by the
RegressionCalc class in its calculations.
<BR abc ="def">
<A href="Regression.html" >
<I> Regression.java </I> </A> This is basically the main routine, or where the
program starts. It puts all of the input from the command line into two
separate vectors for the x and y values.<BR><BR>

An example of the usage of this program would be: <BR>
If you had a history of data on your estimated Lines Of Code (LOC) per class,
as well as the actual LOC per class, you could put these in the formula and
find out the Regression of the data (or how far away each point is from the
function line.)

You would input the data for the estimated LOC, separated by a comma, and
followed by the actual LOC. The result would be the regression calculation.
<PRE>
%java Regression 130 650 99 150 , 186 699 132 272

X Data = [ 130.0 650.0 99.0 150.0 ]
Y Data = [ 186.0 699.0 132.0 272.0 ]
N = 4
Beta0 = 72.6905030780361
Beta1 = 0.9701049443030667
rSquared = 2212.504697673689
</PRE>

</LI></UL>

<HR>
<H2> Knowledge </H2>
<UL>
<LI><A href="vim.html"> <I> Espousing my love
for vim! </I></A> vim just rocks, okay. Really. If I had to choose between,
like, sex, or using vim--let's just say I'd be one masterful-editing monk.
<BR><BR>


</LI><LI>
<A href="MBR-LILO.txt">
<I> Lost LILO? Recover.</I> </A> If you have Linux installed in a multi-boot
environment, and you overwrite your MBR, you can lose LILO. I reinstalled
Windows (hey, I needed to play Final Fantasy VIII!) and couldn't boot into
Linux. Here's how I recovered.
<BR><BR>



</LI></UL><BODY></BODY>
<HTML>
</HTML></HTML>
at org.eclipse.jst.jsp.core.tests.cleanupformat.CleanupTester.compare(CleanupTester.java:336)
at org.eclipse.jst.jsp.core.tests.cleanupformat.CleanupTester.testCleanupHTML(CleanupTester.java:166)
at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:354)
at org.eclipse.test.EclipseTestRunner.run(EclipseTestRunner.java:206)
at org.eclipse.test.CoreTestApplication.runTests(CoreTestApplication.java:35)
at org.eclipse.test.CoreTestApplication.run(CoreTestApplication.java:31)
at org.eclipse.equinox.internal.app.EclipseAppContainer.callMethodWithException(EclipseAppContainer.java:574)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:195)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:386)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504)
at org.eclipse.equinox.launcher.Main.run(Main.java:1236)
at org.eclipse.equinox.launcher.Main.main(Main.java:1212)
0.289
testCleanupHTMLtwiceSuccess0.068
testFormat261968Success0.101
testFormatTagOpenSuccess0.049
testFormatTagOpenTagCloseSuccess0.026
testFormatTagsSuccess0.070
testFormatEmptySuccess0.022
testFormatOneSpaceSuccess0.024
testFormatOneCharSuccess0.022
testFormatSpacesSuccess0.023
testFormatCharsSuccess0.023
testFormatSpacesAndCharsSuccess0.025
testFormatSuccess0.138
testFormatSplitLinesSplitMultiAttrsSuccess0.126
testFormatSplitLinesSuccess0.104
testFormatBlockCommentsSuccess0.124
testFormatInlineCommentsSuccess0.064
testFormatInlineCommentsSplitLinesSplitMultiAttrsSuccess0.070
testHTMLFormatSuccess0.194
testCloneStructuredDocumentXMLSuccess0.002
testCloneStructuredDocumentJSPSuccess0.143
testCloneStructuredDocumentJSPXMLSuccess0.028
testCreationSuccess0.000
testCSSExistsSuccess0.002
testCSSExistsFromFilenameSuccess0.000
testDTDExistsSuccess0.001
testDTDExistsFromFilenameSuccess0.001
testHTMLExistsSuccess0.000
testHTMLExistsFromFilenameSuccess0.001
testJSPExistsSuccess0.000
testJSPExistsFromFilenameSuccess0.000
testXMLExistsSuccess0.001
testXMLExistsFromFilenameSuccess0.000
testDirtyStateForEmbeddedContentTypeTextHTMLSuccess0.414
testDirtyStateForEmbeddedContentTypeTextCSSSuccess0.038
testDirtyStateForEmbeddedContentTypeTextXMLSuccess0.038
testDirtyStateForEmbeddedContentTypeSubXMLSuccess0.037
testDirtyStateForDefaultEmbeddedContentTypeSuccess0.033
testDirtyStateWithNoPageDirectiveSuccess0.055
testCreationSuccess0.000
testXMLExistsSuccess0.001
testHTMLExistsSuccess0.000
testJSPExistsSuccess0.000
testCSSExistsSuccess0.000
testDTDExistsSuccess0.000
testXMLExistsByFileExtensionSuccess0.008
testHTMLExistsByFileExtensionSuccess0.002
testJSPExistsByFileExtensionSuccess0.000
testCSSExistsByFileExtensionSuccess0.025
testDTDExistsByFileExtensionSuccess0.002
testMultipleDefinitionsSuccess0.000
testModelManagerSuccess0.153
testNullArgumentSuccess0.000
testFormat261968Success0.146
testFormatTagOpenSuccess0.019
testFormatTagOpenTagCloseSuccess0.026
testFormatTagsSuccess0.032
testFormatEmptySuccess0.017
testFormatOneSpaceSuccess0.032
testFormatOneCharSuccess0.018
testFormatSpacesSuccess0.018
testFormatCharsSuccess0.018
testFormatSpacesAndCharsSuccess0.018
testFormatSuccess0.066
testFormatSplitLinesSplitMultiAttrsSuccess0.087
testFormatSplitLinesSuccess0.064
testFormatBlockCommentsSuccess0.771
testFormatInlineCommentsSuccess0.048
testFormatInlineCommentsSplitLinesSplitMultiAttrsSuccess0.063
testHTMLFormatSuccess0.094
testJSPModelSuccess0.001
testJSPModelSuccess0.001
testBug116066_1Success0.697
testBug116066_2Success0.068
test144807_AttrNameSuccess0.042
test144807_AttrValueSuccess0.022
test144807_EqualsSuccess0.021
testInsertCommentSuccess0.068
test26004Success0.000
test150794Success0.000
test265380Success0.378
test_107338Success1.648
test_126377Success1.855
test_174042Success2.153
test_178443Success3.023
test_109721Success3.786
test_181057aSuccess2.003
test_219761aSuccess3.109
test_150794Success0.215
testContentModelSingleLineIncludedFileWithNoSpacesButWithTaglibInIncludeSuccess1.187
testTranslateMultiLineIncludedFileWithSpacesAndScriptletInIncludeSuccess1.448
testTranslateSingleLineIncludedFileWithNoSpacesButScriptletInIncludeSuccess0.763
testBundleGetPreferencesSuccess0.001
testPluginGetDefaultPreferencesSuccess0.000
testPluginSetPreferencesSuccess0.000
testDelimiterPreferencesSuccess0.002
testSourceOpen1Success0.734
testSourceAppend1Success0.137
testSourceInsert1Success0.197
testSourceOpen2Success0.063
testSourceAppend2Success0.067
testSourceOpen3Success0.005
testSourceAppend3Success0.100
testSourceOpen4Success0.007
testSourceAppend4Success0.089
testSourceInsert4Success0.138
testSourceOpen5Success0.005
testSourceAppend5Success0.091
testSourceInsert5Success0.125
testSourceOpen6Success0.006
testSourceAppend6Success0.077
testSourceOpen7Success0.004
testSourceAppend7Success0.082
testSourceInsert7Success0.075
testSourceOpen8Success0.005
testSourceAppend8Success0.045
testSourceOpen9Success0.005
testSourceAppend9Success0.049
testSourceOpen10Success0.004
testSourceAppend10Success0.030
testSourceInsert10Success0.031
testSourceOpen11Success0.005
testSourceAppend11Success0.047
testSourceInsert11Success0.047
testSourceOpen12Success0.005
testSourceAppend12Success0.039
testSourceOpen13Success0.005
testSourceAppend13Success0.004
testSourceInsert13Success0.004
testSourceOpen14Success0.004
testSourceAppend14Success0.004
testSourceInsert14Success0.004
testSourceOpen15Success0.006
testSourceInsert15Success0.081
testSourceAppend15Success0.037
testSourceOpen16Success0.003
testSourceInsert16Success0.021
testSourceAppend16Success0.022
testValidatingFragmentsSuccess0.248
testNoValidatingFragmentsSuccess0.042
testImportedCommentsSuccess0.024
testAttributesOnJSP11ForwardSuccess0.001
testAttributesOnJSP11GetPropertySuccess0.001
testAttributesOnJSP11IncludeSuccess0.000
testAttributesOnJSP11IncludeDirectiveSuccess0.000
testAttributesOnJSP11PageDirectiveSuccess0.001
testAttributesOnJSP11ParamSuccess0.000
testAttributesOnJSP11PluginSuccess0.001
testAttributesOnJSP11RootSuccess0.001
testAttributesOnJSP11SetPropertySuccess0.000
testAttributesOnJSP11TaglibDirectiveSuccess0.000
testAttributesOnJSP11UseBeanSuccess0.001
testAttributesOnJSP20AttributeSuccess0.000
testAttributesOnJSP20ElementSuccess0.000
testAttributesOnJSP20ForwardSuccess0.001
testAttributesOnJSP20GetPropertySuccess0.000
testAttributesOnJSP20IncludeSuccess0.000
testAttributesOnJSP20IncludeDirectiveSuccess0.001
testAttributesOnJSP20OutputSuccess0.000
testAttributesOnJSP20PageDirectiveSuccess0.000
testAttributesOnJSP20ParamSuccess0.000
testAttributesOnJSP20PluginSuccess0.000
testAttributesOnJSP20RootSuccess0.001
testAttributesOnJSP20SetPropertySuccess0.000
testAttributesOnJSP20TaglibDirectiveSuccess0.000
testAttributesOnJSP20UseBeanSuccess0.001
testAttributesOnTAG20AttributeSuccess0.006
testAttributesOnTAG20AttributeDirectiveSuccess0.001
testAttributesOnTAG20DoBodySuccess0.000
testAttributesOnTAG20ElementSuccess0.001
testAttributesOnTAG20ForwardSuccess0.000
testAttributesOnTAG20GetPropertySuccess0.000
testAttributesOnTAG20IncludeSuccess0.000
testAttributesOnTAG20IncludeDirectiveSuccess0.000
testAttributesOnTAG20InvokeSuccess0.001
testAttributesOnTAG20OutputSuccess0.000
testAttributesOnTAG20ParamSuccess0.000
testAttributesOnTAG20PluginSuccess0.001
testAttributesOnTAG20RootSuccess0.001
testAttributesOnTAG20SetPropertySuccess0.000
testAttributesOnTAG20TagDirectiveSuccess0.001
testAttributesOnTAG20TaglibDirectiveSuccess0.000
testAttributesOnTAG20UseBeanSuccess0.001
testAttributesOnTAG20VariableDirectiveSuccess0.000
testCHTMLdocumentSuccess0.014
testHTML4documentSuccess0.049
testJSP11documentSuccess0.001
testJSP12documentSuccess0.001
testJSP20documentSuccess0.001
testTag20documentSuccess0.001
testLoadCustomTagsThroughJSPSyntaxSuccess0.642
testLoadCustomTagsThroughXMLSyntaxSuccess0.013
testTagFileReferencedInTLDSuccess0.489
testUknownAttributeSuccess0.095
testMissingRequiredAttributeSuccess0.007
testAttributesCorrectSuccess0.009
testNonEmptyInlineTagSuccess0.008
testValidating2FilesSuccess0.233
testFragmentValidationPreferenceOnProjectSuccess0.399
testFragmentValidationPreferenceOnWorkspaceSuccess2.394
Properties >>

Back to top