There is a problem with 2 of the JSP tests:
  positiveGetParent and positiveDoStartTag

These tests work properly when the JSP page is translated
and then executed.

However, if the container is shutdown, and then restarted, these tests
will fail.

The reason is that the success of these tests depend on the execution
of isValid() in TestTagExtraInfo. isValid() will only
be called at translation time. So if the JSP is executed
from its generated servlet, the test will fail (since
isValid() is not being called).

    -- Pierre

>From the spec:
7.5.1.3 Syntactic Information in a TagExtraInfo Class
Additional translation-time validation can be done using the isValid method in the
TagExtraInfo class. The isValid method is invoked at translation-time and is passed a
TagData instance as its argument.

Reply via email to