-
Notifications
You must be signed in to change notification settings - Fork 54
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
Add readme for tests. #16
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
87dc6cd
Moved test to tests
OGKevin 1695153
Added tests readme
OGKevin 37fc276
Added reference in main readme.
OGKevin ee565e7
Removed php.xml.
OGKevin f23496f
Added JsonParserTest back
OGKevin 35a7cfe
Merge remote-tracking branch 'origin/master' into feature/test_readme
OGKevin 5b33a84
Resolved conflicts
OGKevin 49af07c
Small changes to readme.
OGKevin 59e6089
Removed gs :laughing:
OGKevin ac2181e
Merge branch 'master' into feature/test_readme
OGKevin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# bunq PHP SDK tests :mag: | ||
|
||
## Introduction | ||
Hi developers! | ||
|
||
|
||
Welcome to the bunq PHP SDK integration tests. Currently we are not | ||
targeting the 100% test coverage, but rather want to be certain that the most | ||
common scenarios can run without any errors. | ||
|
||
|
||
## Scenarios | ||
|
||
These are the scenarios that are currently being tested: | ||
* Create installation, session-server and device server | ||
* Create a new MonetaryAccount | ||
* Create a tab | ||
* Update the tab | ||
* Create attachment and avatar | ||
* Request money from first MA to second MA | ||
* Accept the request | ||
* Make a transaction from first MA to second MA | ||
* Create connect gr code | ||
* Make a payment to another sandbox user | ||
* Send a chat message in a recent payment | ||
* Delete the current session | ||
* Order a card with a second line | ||
|
||
Besides these scenarios, some code of ApiContext, ApiClient and the JSON module | ||
are also tested :thumbs_up:. | ||
|
||
## Configuration | ||
|
||
To run the tests you must first setup the test configuration JSON. The example | ||
of a configuration file is located at [`tests/resource/config.example.json`](./resource/config.example.json). | ||
In order to make use of the configuration file, please copy the example to the | ||
same directory, fill in your sandbox user data and rename the copy to config.json. | ||
## Execution | ||
|
||
You can run the tests via command line: | ||
|
||
``` | ||
vendor/phpunit/phpunit/phpunit | ||
``` | ||
|
||
or via PhpStorm, but first you must configure PhpStorm by doing the following: | ||
* Got to preferences --> Language and Frameworks --> Php --> Test Frameworks and add | ||
`sdk_php/vendor/autoload.php` as path to script with `use composer autoloader` checked. | ||
|
||
Afterwards you can right click on the tests folders and should be able to run | ||
the tests cases form the IDE. |
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, if tests are moving from
test
totests
, please also update the test configuration (phpunit.xml
) :PYes, I fixed it in another MR... :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
😁