Unit Test Results

Designed for use with JUnit and Ant .

Summary

TestsFailuresErrorsSuccess rateTime
2031099.51%114.707
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.tests20301114.707

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

NameTestsErrorsFailuresTime(s)
JSPCoreTestSuite20301114.707
Back to top


TestCase JSPCoreTestSuite

NameStatusTypeTime(s)
testCleanupInsertTagsQuoteAttrsSuccess7.601
testCleanupInsertTagsSuccess0.309
testCleanupCompressEmptyElementTagsSuccess0.122
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)
1.440
testCleanupHTMLtwiceSuccess0.057
testFormat261968Success0.163
testFormatTagOpenSuccess0.045
testFormatTagOpenTagCloseSuccess0.031
testFormatTagsSuccess0.049
testFormatEmptySuccess0.025
testFormatOneSpaceSuccess0.028
testFormatOneCharSuccess0.359
testFormatSpacesSuccess0.174
testFormatCharsSuccess0.029
testFormatSpacesAndCharsSuccess0.029
testFormatSuccess0.134
testFormatSplitLinesSplitMultiAttrsSuccess0.275
testFormatSplitLinesSuccess0.109
testFormatBlockCommentsSuccess0.659
testFormatInlineCommentsSuccess0.369
testFormatInlineCommentsSplitLinesSplitMultiAttrsSuccess0.334
testHTMLFormatSuccess0.557
testCloneStructuredDocumentXMLSuccess0.001
testCloneStructuredDocumentJSPSuccess0.322
testCloneStructuredDocumentJSPXMLSuccess0.089
testCreationSuccess0.000
testCSSExistsSuccess0.079
testCSSExistsFromFilenameSuccess0.001
testDTDExistsSuccess0.001
testDTDExistsFromFilenameSuccess0.001
testHTMLExistsSuccess0.000
testHTMLExistsFromFilenameSuccess0.000
testJSPExistsSuccess0.001
testJSPExistsFromFilenameSuccess0.000
testXMLExistsSuccess0.000
testXMLExistsFromFilenameSuccess0.001
testDirtyStateForEmbeddedContentTypeTextHTMLSuccess2.996
testDirtyStateForEmbeddedContentTypeTextCSSSuccess1.650
testDirtyStateForEmbeddedContentTypeTextXMLSuccess0.039
testDirtyStateForEmbeddedContentTypeSubXMLSuccess0.073
testDirtyStateForDefaultEmbeddedContentTypeSuccess0.039
testDirtyStateWithNoPageDirectiveSuccess0.031
testCreationSuccess0.000
testXMLExistsSuccess0.000
testHTMLExistsSuccess0.000
testJSPExistsSuccess0.001
testCSSExistsSuccess0.000
testDTDExistsSuccess0.000
testXMLExistsByFileExtensionSuccess0.011
testHTMLExistsByFileExtensionSuccess0.002
testJSPExistsByFileExtensionSuccess0.000
testCSSExistsByFileExtensionSuccess0.357
testDTDExistsByFileExtensionSuccess0.003
testMultipleDefinitionsSuccess0.000
testModelManagerSuccess0.257
testNullArgumentSuccess0.000
testFormat261968Success0.856
testFormatTagOpenSuccess0.026
testFormatTagOpenTagCloseSuccess0.024
testFormatTagsSuccess0.038
testFormatEmptySuccess0.023
testFormatOneSpaceSuccess0.024
testFormatOneCharSuccess0.862
testFormatSpacesSuccess0.029
testFormatCharsSuccess0.028
testFormatSpacesAndCharsSuccess0.027
testFormatSuccess0.100
testFormatSplitLinesSplitMultiAttrsSuccess0.439
testFormatSplitLinesSuccess0.150
testFormatBlockCommentsSuccess0.211
testFormatInlineCommentsSuccess0.100
testFormatInlineCommentsSplitLinesSplitMultiAttrsSuccess0.104
testHTMLFormatSuccess0.159
testJSPModelSuccess0.005
testJSPModelSuccess0.003
testBug116066_1Success5.247
testBug116066_2Success0.279
test144807_AttrNameSuccess0.023
test144807_AttrValueSuccess0.020
test144807_EqualsSuccess0.018
testInsertCommentSuccess0.040
test26004Success0.001
test150794Success0.000
test265380Success1.688
test_107338Success10.147
test_126377Success8.489
test_174042Success5.630
test_178443Success4.174
test_109721Success11.295
test_181057aSuccess3.379
test_219761aSuccess4.377
test_150794Success0.362
testContentModelSingleLineIncludedFileWithNoSpacesButWithTaglibInIncludeSuccess4.266
testTranslateMultiLineIncludedFileWithSpacesAndScriptletInIncludeSuccess7.821
testTranslateSingleLineIncludedFileWithNoSpacesButScriptletInIncludeSuccess1.715
testBundleGetPreferencesSuccess0.000
testPluginGetDefaultPreferencesSuccess0.000
testPluginSetPreferencesSuccess0.001
testDelimiterPreferencesSuccess0.001
testSourceOpen1Success7.407
testSourceAppend1Success0.492
testSourceInsert1Success0.535
testSourceOpen2Success0.122
testSourceAppend2Success0.090
testSourceOpen3Success0.291
testSourceAppend3Success0.180
testSourceOpen4Success0.006
testSourceAppend4Success0.073
testSourceInsert4Success0.101
testSourceOpen5Success0.004
testSourceAppend5Success0.066
testSourceInsert5Success0.106
testSourceOpen6Success0.006
testSourceAppend6Success0.272
testSourceOpen7Success0.004
testSourceAppend7Success0.054
testSourceInsert7Success0.053
testSourceOpen8Success0.004
testSourceAppend8Success0.031
testSourceOpen9Success0.005
testSourceAppend9Success0.033
testSourceOpen10Success0.004
testSourceAppend10Success0.021
testSourceInsert10Success0.022
testSourceOpen11Success0.004
testSourceAppend11Success0.029
testSourceInsert11Success0.036
testSourceOpen12Success0.004
testSourceAppend12Success0.034
testSourceOpen13Success0.006
testSourceAppend13Success0.005
testSourceInsert13Success0.006
testSourceOpen14Success0.005
testSourceAppend14Success0.006
testSourceInsert14Success0.005
testSourceOpen15Success0.008
testSourceInsert15Success0.100
testSourceAppend15Success0.122
testSourceOpen16Success0.007
testSourceInsert16Success0.061
testSourceAppend16Success0.071
testValidatingFragmentsSuccess0.892
testNoValidatingFragmentsSuccess0.683
testImportedCommentsSuccess0.053
testAttributesOnJSP11ForwardSuccess0.001
testAttributesOnJSP11GetPropertySuccess0.000
testAttributesOnJSP11IncludeSuccess0.000
testAttributesOnJSP11IncludeDirectiveSuccess0.000
testAttributesOnJSP11PageDirectiveSuccess0.001
testAttributesOnJSP11ParamSuccess0.000
testAttributesOnJSP11PluginSuccess0.001
testAttributesOnJSP11RootSuccess0.001
testAttributesOnJSP11SetPropertySuccess0.000
testAttributesOnJSP11TaglibDirectiveSuccess0.000
testAttributesOnJSP11UseBeanSuccess0.000
testAttributesOnJSP20AttributeSuccess0.000
testAttributesOnJSP20ElementSuccess0.000
testAttributesOnJSP20ForwardSuccess0.000
testAttributesOnJSP20GetPropertySuccess0.000
testAttributesOnJSP20IncludeSuccess0.000
testAttributesOnJSP20IncludeDirectiveSuccess0.000
testAttributesOnJSP20OutputSuccess0.001
testAttributesOnJSP20PageDirectiveSuccess0.000
testAttributesOnJSP20ParamSuccess0.000
testAttributesOnJSP20PluginSuccess0.001
testAttributesOnJSP20RootSuccess0.000
testAttributesOnJSP20SetPropertySuccess0.000
testAttributesOnJSP20TaglibDirectiveSuccess0.000
testAttributesOnJSP20UseBeanSuccess0.001
testAttributesOnTAG20AttributeSuccess0.007
testAttributesOnTAG20AttributeDirectiveSuccess0.000
testAttributesOnTAG20DoBodySuccess0.001
testAttributesOnTAG20ElementSuccess0.000
testAttributesOnTAG20ForwardSuccess0.000
testAttributesOnTAG20GetPropertySuccess0.000
testAttributesOnTAG20IncludeSuccess0.000
testAttributesOnTAG20IncludeDirectiveSuccess0.001
testAttributesOnTAG20InvokeSuccess0.000
testAttributesOnTAG20OutputSuccess0.000
testAttributesOnTAG20ParamSuccess0.000
testAttributesOnTAG20PluginSuccess0.001
testAttributesOnTAG20RootSuccess0.001
testAttributesOnTAG20SetPropertySuccess0.000
testAttributesOnTAG20TagDirectiveSuccess0.000
testAttributesOnTAG20TaglibDirectiveSuccess0.000
testAttributesOnTAG20UseBeanSuccess0.000
testAttributesOnTAG20VariableDirectiveSuccess0.000
testCHTMLdocumentSuccess0.013
testHTML4documentSuccess0.141
testJSP11documentSuccess0.000
testJSP12documentSuccess0.001
testJSP20documentSuccess0.000
testTag20documentSuccess0.001
testLoadCustomTagsThroughJSPSyntaxSuccess2.288
testLoadCustomTagsThroughXMLSyntaxSuccess0.027
testTagFileReferencedInTLDSuccess2.104
testUknownAttributeSuccess1.427
testMissingRequiredAttributeSuccess0.006
testAttributesCorrectSuccess0.008
testNonEmptyInlineTagSuccess0.007
testValidating2FilesSuccess2.311
testFragmentValidationPreferenceOnProjectSuccess1.484
testFragmentValidationPreferenceOnWorkspaceSuccess1.202
Properties >>

Back to top