package org.tonjac.mini.test; import java.util.Properties; import org.tonjac.mini.*; /* mini * * This program is distributed under the GNU General Public License, version 2. * A copy of this license is included with this source. * * Copyright 2004-2006, Toni Thomsson */ public class TestRender extends OutputRender { public TestRender( Session session, Properties args ) throws Exception { super( "Test.html", session, args ); addFieldService( new TestData() ); addListService( "table", new TestTableData() ); } }