This project has retired. For details please refer to its Attic page.
JspPrintWriterAdapterTest (Tiles 2 2.1.4 Test API)

org.apache.tiles.jsp.context
Class JspPrintWriterAdapterTest

Package class diagram package JspPrintWriterAdapterTest
java.lang.Object
  extended by junit.framework.Assert
      extended by junit.framework.TestCase
          extended by org.apache.tiles.jsp.context.JspPrintWriterAdapterTest
All Implemented Interfaces:
junit.framework.Test

public class JspPrintWriterAdapterTest
extends junit.framework.TestCase

Tests JspPrintWriterAdapter.

Version:
$Rev: 736275 $ $Date: 2009-01-21 10:58:20 +0100 (mer, 21 gen 2009) $

Constructor Summary
JspPrintWriterAdapterTest()
           
 
Method Summary
 void testAppendChar()
          Test method for JspPrintWriterAdapter.append(char).
 void testAppendCharSequence()
          Test method for JspPrintWriterAdapter.append(java.lang.CharSequence).
 void testAppendCharSequenceIntInt()
          Test method for JspPrintWriterAdapter.append(java.lang.CharSequence, int, int).
 void testClose()
          Test method for JspPrintWriterAdapter.close().
 void testFlush()
          Test method for JspPrintWriterAdapter.flush().
 void testGetJspWriter()
          Test method for JspPrintWriterAdapter.getJspWriter().
 void testPrintBoolean()
          Test method for JspPrintWriterAdapter.print(boolean).
 void testPrintChar()
          Test method for JspPrintWriterAdapter.print(char).
 void testPrintCharArray()
          Test method for JspPrintWriterAdapter.print(char[]).
 void testPrintDouble()
          Test method for JspPrintWriterAdapter.print(double).
 void testPrintFloat()
          Test method for JspPrintWriterAdapter.print(float).
 void testPrintInt()
          Test method for JspPrintWriterAdapter.print(int).
 void testPrintln()
          Test method for JspPrintWriterAdapter.println().
 void testPrintlnBoolean()
          Test method for JspPrintWriterAdapter.println(boolean).
 void testPrintlnChar()
          Test method for JspPrintWriterAdapter.println(char).
 void testPrintlnCharArray()
          Test method for JspPrintWriterAdapter.println(char[]).
 void testPrintlnDouble()
          Test method for JspPrintWriterAdapter.println(double).
 void testPrintlnFloat()
          Test method for JspPrintWriterAdapter.println(float).
 void testPrintlnInt()
          Test method for JspPrintWriterAdapter.println(int).
 void testPrintlnLong()
          Test method for JspPrintWriterAdapter.println(long).
 void testPrintlnObject()
          Test method for JspPrintWriterAdapter.println(java.lang.Object).
 void testPrintlnString()
          Test method for JspPrintWriterAdapter.println(java.lang.String).
 void testPrintLong()
          Test method for JspPrintWriterAdapter.print(long).
 void testPrintObject()
          Test method for JspPrintWriterAdapter.print(java.lang.Object).
 void testPrintString()
          Test method for JspPrintWriterAdapter.print(java.lang.String).
 void testWriteCharArray()
          Test method for JspPrintWriterAdapter.write(char[]).
 void testWriteCharArrayIntInt()
          Test method for JspPrintWriterAdapter.write(char[], int, int).
 void testWriteInt()
          Test method for JspPrintWriterAdapter.write(int).
 void testWriteString()
          Test method for JspPrintWriterAdapter.write(java.lang.String).
 void testWriteStringIntInt()
          Test method for JspPrintWriterAdapter.write(java.lang.String, int, int).
 
Methods inherited from class junit.framework.TestCase
countTestCases, createResult, getName, run, run, runBare, runTest, setName, setUp, tearDown, toString
 
Methods inherited from class junit.framework.Assert
assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertTrue, assertTrue, fail, fail, failNotEquals, failNotSame, failSame, format
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

JspPrintWriterAdapterTest

public JspPrintWriterAdapterTest()
Method Detail

testWriteInt

public void testWriteInt()
                  throws IOException
Test method for JspPrintWriterAdapter.write(int).

Throws:
IOException - If something goes wrong.

testWriteCharArray

public void testWriteCharArray()
                        throws IOException
Test method for JspPrintWriterAdapter.write(char[]).

Throws:
IOException - If something goes wrong.

testWriteCharArrayIntInt

public void testWriteCharArrayIntInt()
                              throws IOException
Test method for JspPrintWriterAdapter.write(char[], int, int).

Throws:
IOException - If something goes wrong.

testFlush

public void testFlush()
               throws IOException
Test method for JspPrintWriterAdapter.flush().

Throws:
IOException - If something goes wrong.

testClose

public void testClose()
               throws IOException
Test method for JspPrintWriterAdapter.close().

Throws:
IOException - If something goes wrong.

testPrintBoolean

public void testPrintBoolean()
                      throws IOException
Test method for JspPrintWriterAdapter.print(boolean).

Throws:
IOException - If something goes wrong.

testPrintChar

public void testPrintChar()
                   throws IOException
Test method for JspPrintWriterAdapter.print(char).

Throws:
IOException - If something goes wrong.

testPrintInt

public void testPrintInt()
                  throws IOException
Test method for JspPrintWriterAdapter.print(int).

Throws:
IOException - If something goes wrong.

testPrintLong

public void testPrintLong()
                   throws IOException
Test method for JspPrintWriterAdapter.print(long).

Throws:
IOException - If something goes wrong.

testPrintFloat

public void testPrintFloat()
                    throws IOException
Test method for JspPrintWriterAdapter.print(float).

Throws:
IOException - If something goes wrong.

testPrintDouble

public void testPrintDouble()
                     throws IOException
Test method for JspPrintWriterAdapter.print(double).

Throws:
IOException - If something goes wrong.

testPrintCharArray

public void testPrintCharArray()
                        throws IOException
Test method for JspPrintWriterAdapter.print(char[]).

Throws:
IOException - If something goes wrong.

testPrintln

public void testPrintln()
                 throws IOException
Test method for JspPrintWriterAdapter.println().

Throws:
IOException - If something goes wrong.

testPrintlnBoolean

public void testPrintlnBoolean()
                        throws IOException
Test method for JspPrintWriterAdapter.println(boolean).

Throws:
IOException - If something goes wrong.

testPrintlnChar

public void testPrintlnChar()
                     throws IOException
Test method for JspPrintWriterAdapter.println(char).

Throws:
IOException - If something goes wrong.

testPrintlnInt

public void testPrintlnInt()
                    throws IOException
Test method for JspPrintWriterAdapter.println(int).

Throws:
IOException - If something goes wrong.

testPrintlnLong

public void testPrintlnLong()
                     throws IOException
Test method for JspPrintWriterAdapter.println(long).

Throws:
IOException - If something goes wrong.

testPrintlnFloat

public void testPrintlnFloat()
                      throws IOException
Test method for JspPrintWriterAdapter.println(float).

Throws:
IOException - If something goes wrong.

testPrintlnDouble

public void testPrintlnDouble()
                       throws IOException
Test method for JspPrintWriterAdapter.println(double).

Throws:
IOException - If something goes wrong.

testPrintlnCharArray

public void testPrintlnCharArray()
                          throws IOException
Test method for JspPrintWriterAdapter.println(char[]).

Throws:
IOException - If something goes wrong.

testGetJspWriter

public void testGetJspWriter()
Test method for JspPrintWriterAdapter.getJspWriter().


testAppendChar

public void testAppendChar()
                    throws IOException
Test method for JspPrintWriterAdapter.append(char).

Throws:
IOException - If something goes wrong.

testAppendCharSequenceIntInt

public void testAppendCharSequenceIntInt()
                                  throws IOException
Test method for JspPrintWriterAdapter.append(java.lang.CharSequence, int, int).

Throws:
IOException - If something goes wrong.

testAppendCharSequence

public void testAppendCharSequence()
                            throws IOException
Test method for JspPrintWriterAdapter.append(java.lang.CharSequence).

Throws:
IOException - If something goes wrong.

testPrintObject

public void testPrintObject()
                     throws IOException
Test method for JspPrintWriterAdapter.print(java.lang.Object).

Throws:
IOException - If something goes wrong.

testPrintString

public void testPrintString()
                     throws IOException
Test method for JspPrintWriterAdapter.print(java.lang.String).

Throws:
IOException - If something goes wrong.

testPrintlnObject

public void testPrintlnObject()
                       throws IOException
Test method for JspPrintWriterAdapter.println(java.lang.Object).

Throws:
IOException - If something goes wrong.

testPrintlnString

public void testPrintlnString()
                       throws IOException
Test method for JspPrintWriterAdapter.println(java.lang.String).

Throws:
IOException - If something goes wrong.

testWriteStringIntInt

public void testWriteStringIntInt()
                           throws IOException
Test method for JspPrintWriterAdapter.write(java.lang.String, int, int).

Throws:
IOException - If something goes wrong.

testWriteString

public void testWriteString()
                     throws IOException
Test method for JspPrintWriterAdapter.write(java.lang.String).

Throws:
IOException - If something goes wrong.


Copyright © 2001-2009 Apache Software Foundation. All Rights Reserved.