Fix issue #1218: Arrange, Act, Assert pattern (#1221)

* add AAA pattern

* reformat comment

* use Testing in readme tags in stead of Unit Test
This commit is contained in:
Zhang WH
2020-05-18 02:44:53 +08:00
committed by GitHub
parent 845da1fa16
commit 1c26bd7416
7 changed files with 301 additions and 0 deletions

View File

@ -0,0 +1,11 @@
@startuml
package com.iluwatar.arrangeactassert {
class Cash {
- amount : int
~ Cash(amount : int)
~ count() : int
~ minus(subtrahend : int) : boolean
~ plus(addend : int)
}
}
@enduml