diff --git a/test/plantuml-indentation-class-test.el b/test/plantuml-indentation-class-test.el index c148aff..e4f7327 100644 --- a/test/plantuml-indentation-class-test.el +++ b/test/plantuml-indentation-class-test.el @@ -89,6 +89,14 @@ These code examples are taken from www.plantuml.com" int size() } + abtract class AbstractC { + int size() + } + + interface InterfaceC { + int size() + } + package \"Classic Collections\" #DDDDDD { Object <|-- ArrayList } @@ -229,6 +237,14 @@ class Foo { int size() } +abtract class AbstractC { + int size() +} + +interface InterfaceC { + int size() +} + package \"Classic Collections\" #DDDDDD { Object <|-- ArrayList }