summaryrefslogtreecommitdiff
path: root/tests/pyreverse/data/classes_No_Name.html
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pyreverse/data/classes_No_Name.html')
-rw-r--r--tests/pyreverse/data/classes_No_Name.html47
1 files changed, 47 insertions, 0 deletions
diff --git a/tests/pyreverse/data/classes_No_Name.html b/tests/pyreverse/data/classes_No_Name.html
new file mode 100644
index 000000000..3f81c340e
--- /dev/null
+++ b/tests/pyreverse/data/classes_No_Name.html
@@ -0,0 +1,47 @@
+<html>
+ <body>
+ <script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
+ <div class="mermaid">
+
+ classDiagram
+ class Ancestor {
+ attr : str
+ cls_member
+ get_value()
+ set_value(value)
+ }
+ class CustomException {
+ }
+ class DoNothing {
+ }
+ class DoNothing2 {
+ }
+ class DoSomething {
+ my_int : Optional[int]
+ my_int_2 : Optional[int]
+ my_string : str
+ do_it(new_int: int) -> int
+ }
+ class Interface {
+ get_value()
+ set_value(value)
+ }
+ class PropertyPatterns {
+ prop1
+ prop2
+ }
+ class Specialization {
+ TYPE : str
+ relation
+ relation2
+ top : str
+ }
+ Specialization --|> Ancestor
+ Ancestor ..|> Interface
+ DoNothing --* Ancestor : cls_member
+ DoNothing --* Specialization : relation
+ DoNothing2 --* Specialization : relation2
+
+ </div>
+ </body>
+</html>