Skip to content

Commit

Permalink
doc(uml): add class diagram
Browse files Browse the repository at this point in the history
  • Loading branch information
rouson committed Jan 2, 2025
1 parent 40752a1 commit efdb7ac
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions doc/uml/class-diagram.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
Julienne Unit Testing Classes
-----------------------------
```mermaid
classDiagram
class string_t
class test_t
class test_result_t
class test_description_t
class test_diagnosis_t
class vector_test_description_t
class test_t{
<<abstract>>
+ subject() character
+ results() test_result_t
+ report()
}
class vector_test_description_t{
<<abstract>>
- description_vector_ : string_t
- vector_function_strategy_ : vector_function_strategy_t
+ vector_function() string_t
}
vector_test_description_t o-- string_t

0 comments on commit efdb7ac

Please sign in to comment.