Unit Test Results

Designed for use with JUnit and Ant .

Summary

TestsFailuresErrorsSuccess rateTime
2031099.51%63.643
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.tests2030163.643

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

NameTestsErrorsFailuresTime(s)
JSPCoreTestSuite2030163.643
Back to top


TestCase JSPCoreTestSuite

NameStatusTypeTime(s)
testCleanupInsertTagsQuoteAttrsSuccess3.573
testCleanupInsertTagsSuccess0.353
testCleanupCompressEmptyElementTagsSuccess0.165
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.467
testCleanupHTMLtwiceSuccess0.066
testFormat261968Success0.144
testFormatTagOpenSuccess0.125
testFormatTagOpenTagCloseSuccess0.036
testFormatTagsSuccess0.064
testFormatEmptySuccess0.173
testFormatOneSpaceSuccess0.022
testFormatOneCharSuccess0.024
testFormatSpacesSuccess0.028
testFormatCharsSuccess0.025
testFormatSpacesAndCharsSuccess0.027
testFormatSuccess0.190
testFormatSplitLinesSplitMultiAttrsSuccess0.223
testFormatSplitLinesSuccess0.117
testFormatBlockCommentsSuccess0.322
testFormatInlineCommentsSuccess0.087
testFormatInlineCommentsSplitLinesSplitMultiAttrsSuccess0.094
testHTMLFormatSuccess0.443
testCloneStructuredDocumentXMLSuccess0.003
testCloneStructuredDocumentJSPSuccess0.279
testCloneStructuredDocumentJSPXMLSuccess0.037
testCreationSuccess0.001
testCSSExistsSuccess0.003
testCSSExistsFromFilenameSuccess0.001
testDTDExistsSuccess0.002
testDTDExistsFromFilenameSuccess0.001
testHTMLExistsSuccess0.001
testHTMLExistsFromFilenameSuccess0.002
testJSPExistsSuccess0.000
testJSPExistsFromFilenameSuccess0.001
testXMLExistsSuccess0.001
testXMLExistsFromFilenameSuccess0.002
testDirtyStateForEmbeddedContentTypeTextHTMLSuccess0.930
testDirtyStateForEmbeddedContentTypeTextCSSSuccess0.113
testDirtyStateForEmbeddedContentTypeTextXMLSuccess0.310
testDirtyStateForEmbeddedContentTypeSubXMLSuccess0.209
testDirtyStateForDefaultEmbeddedContentTypeSuccess0.085
testDirtyStateWithNoPageDirectiveSuccess0.028
testCreationSuccess0.001
testXMLExistsSuccess0.000
testHTMLExistsSuccess0.000
testJSPExistsSuccess0.000
testCSSExistsSuccess0.001
testDTDExistsSuccess0.000
testXMLExistsByFileExtensionSuccess0.013
testHTMLExistsByFileExtensionSuccess0.001
testJSPExistsByFileExtensionSuccess0.000
testCSSExistsByFileExtensionSuccess0.028
testDTDExistsByFileExtensionSuccess0.002
testMultipleDefinitionsSuccess0.000
testModelManagerSuccess0.131
testNullArgumentSuccess0.000
testFormat261968Success0.365
testFormatTagOpenSuccess0.024
testFormatTagOpenTagCloseSuccess0.023
testFormatTagsSuccess0.359
testFormatEmptySuccess0.033
testFormatOneSpaceSuccess0.047
testFormatOneCharSuccess0.023
testFormatSpacesSuccess0.024
testFormatCharsSuccess0.023
testFormatSpacesAndCharsSuccess0.022
testFormatSuccess0.145
testFormatSplitLinesSplitMultiAttrsSuccess0.095
testFormatSplitLinesSuccess0.058
testFormatBlockCommentsSuccess0.086
testFormatInlineCommentsSuccess0.045
testFormatInlineCommentsSplitLinesSplitMultiAttrsSuccess0.046
testHTMLFormatSuccess0.090
testJSPModelSuccess0.001
testJSPModelSuccess0.001
testBug116066_1Success2.845
testBug116066_2Success0.235
test144807_AttrNameSuccess0.039
test144807_AttrValueSuccess0.037
test144807_EqualsSuccess0.048
testInsertCommentSuccess0.323
test26004Success0.002
test150794Success0.001
test265380Success1.540
test_107338Success4.701
test_126377Success4.403
test_174042Success3.363
test_178443Success2.267
test_109721Success6.702
test_181057aSuccess3.092
test_219761aSuccess3.020
test_150794Success0.164
testContentModelSingleLineIncludedFileWithNoSpacesButWithTaglibInIncludeSuccess2.355
testTranslateMultiLineIncludedFileWithSpacesAndScriptletInIncludeSuccess2.014
testTranslateSingleLineIncludedFileWithNoSpacesButScriptletInIncludeSuccess1.132
testBundleGetPreferencesSuccess0.004
testPluginGetDefaultPreferencesSuccess0.000
testPluginSetPreferencesSuccess0.000
testDelimiterPreferencesSuccess0.001
testSourceOpen1Success1.276
testSourceAppend1Success0.235
testSourceInsert1Success0.411
testSourceOpen2Success0.123
testSourceAppend2Success0.771
testSourceOpen3Success0.024
testSourceAppend3Success0.204
testSourceOpen4Success0.067
testSourceAppend4Success0.084
testSourceInsert4Success0.369
testSourceOpen5Success0.004
testSourceAppend5Success0.225
testSourceInsert5Success0.123
testSourceOpen6Success0.009
testSourceAppend6Success0.256
testSourceOpen7Success0.003
testSourceAppend7Success0.049
testSourceInsert7Success0.169
testSourceOpen8Success0.004
testSourceAppend8Success0.099
testSourceOpen9Success0.004
testSourceAppend9Success0.038
testSourceOpen10Success0.004
testSourceAppend10Success0.024
testSourceInsert10Success0.022
testSourceOpen11Success0.004
testSourceAppend11Success0.029
testSourceInsert11Success0.035
testSourceOpen12Success0.004
testSourceAppend12Success0.026
testSourceOpen13Success0.007
testSourceAppend13Success0.006
testSourceInsert13Success0.006
testSourceOpen14Success0.006
testSourceAppend14Success0.006
testSourceInsert14Success0.005
testSourceOpen15Success0.007
testSourceInsert15Success0.144
testSourceAppend15Success0.223
testSourceOpen16Success0.007
testSourceInsert16Success0.063
testSourceAppend16Success0.075
testValidatingFragmentsSuccess0.958
testNoValidatingFragmentsSuccess0.960
testImportedCommentsSuccess0.042
testAttributesOnJSP11ForwardSuccess0.001
testAttributesOnJSP11GetPropertySuccess0.001
testAttributesOnJSP11IncludeSuccess0.000
testAttributesOnJSP11IncludeDirectiveSuccess0.000
testAttributesOnJSP11PageDirectiveSuccess0.000
testAttributesOnJSP11ParamSuccess0.000
testAttributesOnJSP11PluginSuccess0.000
testAttributesOnJSP11RootSuccess0.001
testAttributesOnJSP11SetPropertySuccess0.000
testAttributesOnJSP11TaglibDirectiveSuccess0.000
testAttributesOnJSP11UseBeanSuccess0.000
testAttributesOnJSP20AttributeSuccess0.000
testAttributesOnJSP20ElementSuccess0.001
testAttributesOnJSP20ForwardSuccess0.000
testAttributesOnJSP20GetPropertySuccess0.000
testAttributesOnJSP20IncludeSuccess0.000
testAttributesOnJSP20IncludeDirectiveSuccess0.000
testAttributesOnJSP20OutputSuccess0.001
testAttributesOnJSP20PageDirectiveSuccess0.000
testAttributesOnJSP20ParamSuccess0.000
testAttributesOnJSP20PluginSuccess0.000
testAttributesOnJSP20RootSuccess0.000
testAttributesOnJSP20SetPropertySuccess0.000
testAttributesOnJSP20TaglibDirectiveSuccess0.000
testAttributesOnJSP20UseBeanSuccess0.000
testAttributesOnTAG20AttributeSuccess0.007
testAttributesOnTAG20AttributeDirectiveSuccess0.000
testAttributesOnTAG20DoBodySuccess0.001
testAttributesOnTAG20ElementSuccess0.000
testAttributesOnTAG20ForwardSuccess0.000
testAttributesOnTAG20GetPropertySuccess0.000
testAttributesOnTAG20IncludeSuccess0.000
testAttributesOnTAG20IncludeDirectiveSuccess0.000
testAttributesOnTAG20InvokeSuccess0.000
testAttributesOnTAG20OutputSuccess0.000
testAttributesOnTAG20ParamSuccess0.000
testAttributesOnTAG20PluginSuccess0.001
testAttributesOnTAG20RootSuccess0.021
testAttributesOnTAG20SetPropertySuccess0.000
testAttributesOnTAG20TagDirectiveSuccess0.000
testAttributesOnTAG20TaglibDirectiveSuccess0.000
testAttributesOnTAG20UseBeanSuccess0.001
testAttributesOnTAG20VariableDirectiveSuccess0.000
testCHTMLdocumentSuccess0.013
testHTML4documentSuccess0.267
testJSP11documentSuccess0.001
testJSP12documentSuccess0.000
testJSP20documentSuccess0.001
testTag20documentSuccess0.001
testLoadCustomTagsThroughJSPSyntaxSuccess0.774
testLoadCustomTagsThroughXMLSyntaxSuccess0.011
testTagFileReferencedInTLDSuccess1.000
testUknownAttributeSuccess0.340
testMissingRequiredAttributeSuccess0.008
testAttributesCorrectSuccess0.007
testNonEmptyInlineTagSuccess0.008
testValidating2FilesSuccess1.045
testFragmentValidationPreferenceOnProjectSuccess0.713
testFragmentValidationPreferenceOnWorkspaceSuccess3.033
Properties >>

Back to top