diff options
author | Bernard Normier <bernard@zeroc.com> | 2014-06-26 20:54:48 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2014-06-26 20:54:48 +0000 |
commit | 005998b0fe3bcc3fb4e4a850b49164c4e19eb441 (patch) | |
tree | f221c20c1065ec13c81d7b5aa8d7bf056aef1e65 /php/test | |
parent | Fixed ICE-5546: Python Ice/converter demo (diff) | |
download | ice-005998b0fe3bcc3fb4e4a850b49164c4e19eb441.tar.bz2 ice-005998b0fe3bcc3fb4e4a850b49164c4e19eb441.tar.xz ice-005998b0fe3bcc3fb4e4a850b49164c4e19eb441.zip |
Fix for ICE-5515 (ice_staticId on proxies) in Java, C#, Python, Ruby and PHP (not complete in Python, Ruby and PHP)
Diffstat (limited to 'php/test')
-rw-r--r-- | php/test/Ice/operations/Client.php | 5 | ||||
-rw-r--r-- | php/test/Ice/proxy/Client.php | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/php/test/Ice/operations/Client.php b/php/test/Ice/operations/Client.php index 6f3fba259c7..6a71e960724 100644 --- a/php/test/Ice/operations/Client.php +++ b/php/test/Ice/operations/Client.php @@ -42,6 +42,11 @@ function twoways($communicator, $p) } { + test(Test_MyDerivedClassPrxHelper::ice_staticId() == Test_MyDerivedClass::ice_staticId()); + } + + + { test($p->ice_isA("::Test::MyClass")); } diff --git a/php/test/Ice/proxy/Client.php b/php/test/Ice/proxy/Client.php index 7789be1d865..33924acd10a 100644 --- a/php/test/Ice/proxy/Client.php +++ b/php/test/Ice/proxy/Client.php @@ -402,7 +402,7 @@ function allTests($communicator) $b1 = $b1->ice_locator($locator->ice_uncheckedCast("::Ice::Locator")); $proxyProps = $communicator->proxyToProperty($b1, "Test"); - test(count($proxyProps) == 18); + test(count($proxyProps) == 21); test($proxyProps["Test"] == "test -t -e 1.0"); //test($proxyProps["Test.CollocationOptimized"] == "1"); |