/tests/src/test/java/org/sigmah/endtoend/fixture/AbstractContainer.java

http://sigma-h.googlecode.com/ · Java · 14 lines · 6 code · 4 blank · 4 comment · 0 complexity · d712691b4ff0bd01a7e2722347a9b64f MD5 · raw file

  1. /*
  2. * All Sigmah code is released under the GNU General Public License v3
  3. * See COPYRIGHT.txt and LICENSE.txt.
  4. */
  5. package org.sigmah.endtoend.fixture;
  6. public abstract class AbstractContainer {
  7. public AbstractContainer() {
  8. }
  9. public abstract String getUrl(String page);
  10. }