java-design-patterns/arrange-act-assert/etc/arrange-act-assert.urm.puml
Zhang WH 1c26bd7416
Fix issue #1218: Arrange, Act, Assert pattern (#1221)
* add AAA pattern

* reformat comment

* use Testing in readme tags in stead of Unit Test
2020-05-17 21:44:53 +03:00

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