plantuml-server/src/test/java/net/sourceforge/plantuml/servlet/utils/TestUtils.java

34 lines
666 B
Java
Raw Normal View History

package net.sourceforge.plantuml.servlet.utils;
2011-02-23 14:51:38 +00:00
/**
* Utility class for the unit tests
2011-02-23 14:51:38 +00:00
*/
public abstract class TestUtils {
2011-02-23 14:51:38 +00:00
//
// Theses strings are the compressed form of a PlantUML diagram.
//
/**
* version
*/
public static final String VERSION = "AqijAixCpmC0";
/**
* version
*/
public static final String VERSIONCODE = "@startuml\nversion\n@enduml";
/**
* Bob -> Alice : hello
*/
public static final String SEQBOB = "SyfFKj2rKt3CoKnELR1Io4ZDoSa70000";
2011-02-23 14:51:38 +00:00
/**
* Bob -> Alice : hello
*/
public static final String SEQBOBCODE = "@startuml\nBob -> Alice : hello\n@enduml";
2011-02-23 14:51:38 +00:00
}