forked from ArtisanCloud/PowerWeChat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
35 lines (27 loc) · 1.65 KB
/
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
32
33
34
35
test: test-kernel-support
test-message:
go test -v test/featureUnit/main_test.go test/featureUnit/work_message_test.go
# 小程序AES解密场景
go test -v src/miniProgram/encryptor.go src/miniProgram/encryptor_test.go
test-external-contact:
go test -v test/featureUnit/main_test.go test/featureUnit/work_externalcontact_add_contact_way_test.go
go test -v test/featureUnit/main_test.go test/featureUnit/work_externalcontact_get_contact_way_test.go
go test -v test/featureUnit/main_test.go test/featureUnit/work_externalcontact_update_contact_way_test.go
go test -v test/featureUnit/main_test.go test/featureUnit/work_externalcontact_del_contact_way_test.go
go test -v test/featureUnit/main_test.go test/featureUnit/work_externalcontact_get_test.go
test-external-contact-message:
go test -v test/featureUnit/main_test.go test/featureUnit/work_externalcontact_add_msg_template_test.go
go test -v test/featureUnit/main_test.go test/featureUnit/work_externalcontact_get_group_msg_result_test.go
test-media:
go test -v test/featureUnit/main_test.go test/featureUnit/work_media_test.go
test-payment:
go test -v test/featureUnit/main_test.go test/featureUnit/payment_order_test.go
go test -v test/featureUnit/main_test.go test/featureUnit/payment_jssdk_test.go
go test -v test/featureUnit/main_test.go test/featureUnit/payment_redpack_test.go
test-kernel-support:
go test -v src/kernel/support/aes.go src/kernel/support/aes_test.go
go test -v src/kernel/support/helper.go src/kernel/support/helper_test.go
go test -v src/kernel/support/rsa_oaep.go src/kernel/support/rsa_oaep_test.go
go test -v src/kernel/support/signer.go src/kernel/support/signer_test.go
build:
go build