Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
d326bf5
move valid module config assertion to actual implementation
gregor-j Jan 15, 2019
23037a5
remove work-in-progress message
gregor-j Jan 16, 2019
56de2e7
move to php/sap interfaces and common v1.0, remove support and add ho…
gregor-j Jan 16, 2019
bdabcf6
rename vendor
gregor-j Jan 16, 2019
22cde0f
fix broken mandatory param test
gregor-j Jan 16, 2019
68df4cd
fix broken mandatory param test
gregor-j Jan 16, 2019
02a2410
update to php-sap/common 2.0
gregor-j Jan 22, 2019
502ad6f
switch php-sap/common to dev-master
gregor-j Jan 23, 2019
bbf6f12
add missing test for timestamp
gregor-j Jan 23, 2019
9b2e641
update php-sap/common to 2.1.0
gregor-j Jan 23, 2019
e25ef9b
update composer dependencies
gregor-j Oct 29, 2019
884ad7a
start integrating new major interface version 2.x
gregor-j Oct 30, 2019
9c10987
fix DateTime specific test because of automated typecasting
gregor-j Oct 30, 2019
9bb04f8
update composer lock
gregor-j Oct 30, 2019
14dcfc3
remove composer lock file
gregor-j Oct 30, 2019
04ebb84
require php-sap/datetime
gregor-j Oct 31, 2019
95a5586
change integration tests from custom Z_MC_GET_DATE_TIME to RFC_* func…
gregor-j Nov 4, 2019
6b8e2f6
fix rfc in-out-value assertions of RFC_WALK_THRU_TEST
gregor-j Nov 4, 2019
68bb633
Load remote API of RFC_WALK_THRU_TEST from JSON.
gregor-j Nov 7, 2019
b15b641
Load remote API of RFC_READ_TABLE from JSON.
gregor-j Nov 7, 2019
3497883
change ABAP type 's' number to 4095
gregor-j Nov 7, 2019
85d0daf
tests: change ABAP type 's' number to 4095
gregor-j Nov 7, 2019
d104709
adapt tests to v2 connection interface
gregor-j Nov 28, 2019
2bfbc7d
extend tests to reach 100% coverage of potential code for v2 connecti…
gregor-j Nov 28, 2019
0f559d1
Adapt PHP5 version of integration tests to v2 API and v3 commons.
gregor-j Dec 16, 2019
e89d6df
replace invalid class and add missing config settings
gregor-j Dec 16, 2019
ab5afd0
add null to invalid config data provider
gregor-j Dec 16, 2019
3323537
added new invalid config and removed superfluous addApi() calls
gregor-j Dec 17, 2019
7126400
underlying SAP RFC modules have different capabilities when returning…
gregor-j Jan 30, 2020
6d8939a
Adapt to interface v2 and commons v3
gregor-j Jan 31, 2020
0c5b571
remove return type hint
gregor-j Jan 31, 2020
6f06fb7
replace try-catch with expectedException
gregor-j Jan 31, 2020
9a44b1d
use extracted complete API of RFC_WALK_THRU_TEST in order to test all…
gregor-j Jan 31, 2020
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: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
vendor/
composer.lock
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"phpunit/phpunit": "^6.5",
"kba-team/memory-container": "^1.0",
"php-sap/interfaces": "v2.x-dev",
"php-sap/common": "v3.x-dev"
"php-sap/common": "v3.x-dev",
"php-sap/datetime": "^1.1"
},
"autoload": {
"psr-4": {
Expand Down
Loading