Skip to content

Test/add unit tests #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 26 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
402cb8a
btcr-service-client
framicheli Oct 22, 2018
a7a2b96
btcr-service-client
framicheli Oct 22, 2018
f4c874f
btcr-service-client
framicheli Oct 26, 2018
5928ba3
btcr-service-client
framicheli Oct 26, 2018
e665b11
Add files via upload
framicheli Oct 26, 2018
6482126
btcr-service-client
framicheli Oct 26, 2018
93ff35f
Add files via upload
framicheli Oct 26, 2018
936f2f3
btcr-service-client
framicheli Oct 27, 2018
9a07d3f
Add files via upload
framicheli Oct 27, 2018
fd8bef0
btcr-service-client
framicheli Nov 2, 2018
7ff70d0
Merge branch 'master' of github.com:FrankMike/btcr-service-client-java
framicheli Nov 2, 2018
cfde89d
added tests
framicheli Nov 6, 2018
5cd68e1
deleted files
framicheli Nov 6, 2018
fca34f2
added tests
framicheli Nov 6, 2018
8716017
deleted file
framicheli Nov 6, 2018
986028e
Deleted unused import in BTCRDIDResolver.java
framicheli Nov 6, 2018
660d036
Swtich to Android Wallet, with a new project structure
framicheli Nov 15, 2018
9b5ca7e
Merge branch 'master' of https://github.com/opdup/btcr-service-client…
framicheli Nov 15, 2018
18b38db
Add ServiceConnection tests using MockWebServer and Mockito frameworks
framicheli Nov 22, 2018
8bf108c
Change project structure adding new Android module for the library
framicheli Nov 29, 2018
06a24f5
Add more tests on ServiceConnectionTester.java, add get transactions …
framicheli Dec 3, 2018
4b6ca93
Add tests for ServiceConnection
framicheli Dec 6, 2018
e5bbfee
Add BTCRDIDResolverTester test
framicheli Dec 10, 2018
25ab0ad
Add new tests on BTCRDIDResolverTest
framicheli Dec 18, 2018
d6d9d58
Add testGetUtxosForAddress method on BTCRDIDResolverTest class and bu…
framicheli Jan 9, 2019
6f8ac3c
Add DDO generation with JSONLD
framicheli Jul 16, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
.gradle
/local.properties
/.idea/caches/build_file_checksums.ser
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
Expand Down
4 changes: 4 additions & 0 deletions .idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/runConfigurations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,12 @@ dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.google.code.gson:gson:2.8.5'
testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:2.7.22'
testImplementation 'org.mockito:mockito-core:2.23.0'
testImplementation 'com.squareup.okhttp3:mockwebserver:3.12.0'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
androidTestImplementation 'org.mockito:mockito-android:2.7.22'
androidTestImplementation 'org.mockito:mockito-android:2.23.0'
androidTestImplementation 'com.squareup.okhttp3:mockwebserver:3.12.0'
}
76 changes: 0 additions & 76 deletions app/src/main/java/com/opdup/btcrserviceclient/BTCRDIDResolver.java

This file was deleted.

19 changes: 0 additions & 19 deletions app/src/main/java/com/opdup/btcrserviceclient/DecodedTx.java

This file was deleted.

19 changes: 0 additions & 19 deletions app/src/main/java/com/opdup/btcrserviceclient/ResolveBTCRDID.java

This file was deleted.

This file was deleted.

27 changes: 0 additions & 27 deletions app/src/main/java/com/opdup/btcrserviceclient/TxIdFromTxRef.java

This file was deleted.

19 changes: 0 additions & 19 deletions app/src/main/java/com/opdup/btcrserviceclient/UtxosForAddress.java

This file was deleted.

64 changes: 0 additions & 64 deletions app/src/test/java/com/opdup/btcwallet/BTCRDIDResolverTest.java

This file was deleted.

1 change: 1 addition & 0 deletions btcrserviceclient/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
Loading