From 70e305a918fcf193009831d4e89aa8c386df3dc4 Mon Sep 17 00:00:00 2001 From: Fabio Bas Date: Tue, 29 Mar 2016 09:24:08 +0200 Subject: Ported / fixed most old tests --- tests/unit/Data/SqlMap/PropertyAccessTest.php | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'tests/unit/Data/SqlMap/PropertyAccessTest.php') diff --git a/tests/unit/Data/SqlMap/PropertyAccessTest.php b/tests/unit/Data/SqlMap/PropertyAccessTest.php index eb8306d5..ba9e24c7 100644 --- a/tests/unit/Data/SqlMap/PropertyAccessTest.php +++ b/tests/unit/Data/SqlMap/PropertyAccessTest.php @@ -24,9 +24,9 @@ class PropertyAccessTest extends BaseCase $account6 = $this->NewAccount6(); $two->More = $account6; - $this->assertIdentical(10, TPropertyAccess::get($account, 'Id')); - $this->assertIdentical(12, TPropertyAccess::get($account, 'More.Id')); - $this->assertIdentical(6, TPropertyAccess::get($account, 'More.More.Id')); + $this->assertSame(10, TPropertyAccess::get($account, 'Id')); + $this->assertSame(12, TPropertyAccess::get($account, 'More.Id')); + $this->assertSame(6, TPropertyAccess::get($account, 'More.More.Id')); } function testSetPublicProperty() @@ -48,11 +48,11 @@ class PropertyAccessTest extends BaseCase TPropertyAccess::set($account, 'More.More.EmailAddress', 'hahaha'); - $this->assertIdentical(10, TPropertyAccess::get($account, 'Id')); - $this->assertIdentical(12, TPropertyAccess::get($account, 'More.Id')); - $this->assertIdentical(6, TPropertyAccess::get($account, 'More.More.Id')); + $this->assertSame(10, TPropertyAccess::get($account, 'Id')); + $this->assertSame(12, TPropertyAccess::get($account, 'More.Id')); + $this->assertSame(6, TPropertyAccess::get($account, 'More.More.Id')); - $this->assertIdentical('hahaha', + $this->assertSame('hahaha', TPropertyAccess::get($account, 'More.More.EmailAddress')); } @@ -63,12 +63,12 @@ class PropertyAccessTest extends BaseCase $things['accounts'] = $this->NewAccount6(); $account->More = $things; - $this->assertIdentical(6, TPropertyAccess::get($account, 'More.accounts.ID')); + $this->assertSame(6, TPropertyAccess::get($account, 'More.accounts.ID')); TPropertyAccess::set($account, 'More.accounts.EmailAddress', 'adssd'); - $this->assertIdentical('adssd', TPropertyAccess::get($account, 'More.accounts.EmailAddress')); + $this->assertSame('adssd', TPropertyAccess::get($account, 'More.accounts.EmailAddress')); - $this->assertIdentical(1, TPropertyAccess::get($things, 'more')); + $this->assertSame(1, TPropertyAccess::get($things, 'more')); } } -- cgit v1.2.3