Skip to content
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

Test/add unit tests #3

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
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