01: package com.ecyrd.jspwiki.web;
02:
03: public class ContainerJDBCTest extends CommonContainerTests {
04: protected static final String USER = "pancho";
05:
06: public ContainerJDBCTest(String s) {
07: super (s, "test-container-jdbc/");
08: }
09:
10: public void testCreateProfile() {
11: createProfile("pvilla", "Pancho Villa");
12:
13: // We should see the user name & the g'day (asserted only)
14: }
15:
16: }
|