mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-19 15:27:13 +00:00
1c26bd7416
* add AAA pattern * reformat comment * use Testing in readme tags in stead of Unit Test
11 lines
207 B
Plaintext
11 lines
207 B
Plaintext
@startuml
|
|
package com.iluwatar.arrangeactassert {
|
|
class Cash {
|
|
- amount : int
|
|
~ Cash(amount : int)
|
|
~ count() : int
|
|
~ minus(subtrahend : int) : boolean
|
|
~ plus(addend : int)
|
|
}
|
|
}
|
|
@enduml |