-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
25 lines (22 loc) · 864 Bytes
/
main.py
File metadata and controls
25 lines (22 loc) · 864 Bytes
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
from factory_pattern.simple_factory import test_simple_factory
from factory_pattern.factory_pattern import test_factory
from factory_pattern.abstract_factory import test_abstract_factory
from singleton_pattern.singleton import test_singletion_threading
from prototype_pattern.prototype import test_prototype
from bridge_pattern.bridge import test_bridge
from composite_pattern.composite import test_composite
from decorator_pattern.decorator import test_decorator
from facade_pattern.facade import test_facade
from proxy_pattern.proxy import test_proxy
from chain_pattern.chain import test_chain
if __name__ == "__main__":
# test_simple_factory()
# test_factory()
# test_abstract_factory()
# test_singletion_threading()
# test_prototype()
# test_composite()
# test_decorator()
# test_facade()
# test_proxy()
test_chain()