-
Notifications
You must be signed in to change notification settings - Fork 4
/
makefile
33 lines (28 loc) · 900 Bytes
/
makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
export GOPATH=$(shell pwd)
test:
# creational
go test -v creational/01_factory/
go test -v creational/02_abstractfactory/
go test -v creational/03_singleton/
go test -v creational/04_builder/
go test -v creational/05_prototype/
# structral
go test -v structural/06_adapter/
go test -v structural/07_bridge/
go test -v structural/08_filter/
go test -v structural/09_composite/
go test -v structural/10_decorator/
go test -v structural/11_facade/
go test -v structural/12_flyweight/
go test -v structural/13_proxy/
# behavioral
go test -v behavioral/14_chain/
go test -v behavioral/15_command/
go test -v behavioral/16_interpreter/
go test -v behavioral/17_mediator/
go test -v behavioral/18_memento/
go test -v behavioral/19_observer/
go test -v behavioral/20_state
go test -v behavioral/21_strategy
go test -v behavioral/22_template
go test -v behavioral/23_visitor