01: package com.ecyrd.jspwiki.web;
02:
03: public abstract class CommonCustomTests extends CommonTests {
04: public CommonCustomTests(String name, String uRL) {
05: super (name, uRL);
06: }
07:
08: public void testCreateProfile() {
09: createProfile("pvilla", "Pancho Villa");
10:
11: // We should see the user name & the g'day
12: }
13: }
|