1 /* 2 * Copyright (c) 2003, Inversoft 3 * 4 * This software is distribuable under the GNU Lesser General Public License. 5 * For more information visit gnu.org. 6 */ 7 package com.inversoft.verge.mvc.test.remote; 8 9 10 import com.inversoft.verge.mvc.test.FormMVCTest; 11 12 13 /** 14 * <p> 15 * This class contains the full tests for the form based 16 * MVC that will be run remotely. All the tests in the parent 17 * should be remoteable and therefore, this will simply run 18 * those tests remotely by first setting the local flag to 19 * false. 20 * </p> 21 * 22 * @author Brian Pontarelli 23 */ 24 public class RemoteFormMVCTest extends FormMVCTest { 25 26 /** 27 * Constructs a new <code>FormMVCTest</code>. 28 * 29 * @param name The name of the test to run 30 */ 31 public RemoteFormMVCTest(String name) { 32 super(name); 33 setLocal(false); 34 } 35 }