1
0
mirror of https://github.com/octoleo/plantuml-server.git synced 2024-06-25 19:22:34 +00:00
plantuml-server/src/test/java/net/sourceforge/plantuml/servlet/TestUtils.java
2014-02-15 19:20:32 +01:00

28 lines
534 B
Java

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