mirror of
https://github.com/octoleo/plantuml.git
synced 2024-12-28 04:55:58 +00:00
23 lines
508 B
Java
23 lines
508 B
Java
|
package testhelper;
|
||
|
|
||
|
import static net.sourceforge.plantuml.test.PlantUmlTestUtils.exportDiagram;
|
||
|
import static org.assertj.core.api.Assertions.assertThat;
|
||
|
|
||
|
import org.junit.jupiter.api.Test;
|
||
|
|
||
|
class TestHelper {
|
||
|
|
||
|
@Test
|
||
|
public void test_help_themes() throws Exception {
|
||
|
|
||
|
final String output = exportDiagram(
|
||
|
"@startuml",
|
||
|
"help themes",
|
||
|
"@enduml"
|
||
|
).asString();
|
||
|
|
||
|
assertThat(output)
|
||
|
.startsWith(" \nHelp on themes")
|
||
|
.contains("bluegray", "hacker");
|
||
|
}
|
||
|
}
|