1
0
mirror of https://github.com/octoleo/plantuml-server.git synced 2024-06-02 00:20:48 +00:00
plantuml-server/src/test/java/net/sourceforge/plantuml/servlet/TestUtils.java

28 lines
534 B
Java
Raw Normal View History

2011-02-23 14:51:38 +00:00
package net.sourceforge.plantuml.servlet;
/**
* Utility class for the unit tests
2011-02-23 14:51:38 +00:00
*/
public class TestUtils {
/*
* Theses strings are the compressed form of a PlantUML diagram.
2011-02-23 14:51:38 +00:00
*/
/*
* version
*/
public static final String VERSION = "AqijAixCpmC0";
/*
* Bob -> Alice : hello
*/
public static final String SEQBOB = "SyfFKj2rKt3CoKnELR1Io4ZDoSa70000";
2011-02-23 14:51:38 +00:00
protected TestUtils() {
// prevents calls from subclass
throw new UnsupportedOperationException();
}
2011-02-23 14:51:38 +00:00
}