|
@ -16,9 +16,8 @@ final class QueryBuilderUnlinkTest extends TestCase |
|
|
self::assertEquals( |
|
|
self::assertEquals( |
|
|
expected: "UNLINK test FROM {$this->TestUUID}", |
|
|
expected: "UNLINK test FROM {$this->TestUUID}", |
|
|
actual: QueryBuilder::Unlink() |
|
|
actual: QueryBuilder::Unlink() |
|
|
->PropertyName("test") |
|
|
->UnlinkWhat("test") |
|
|
->From() |
|
|
->From($this->TestUUID) |
|
|
->RelativePath($this->TestUUID) |
|
|
|
|
|
->Build() |
|
|
->Build() |
|
|
); |
|
|
); |
|
|
} |
|
|
} |
|
@ -27,9 +26,8 @@ final class QueryBuilderUnlinkTest extends TestCase |
|
|
self::assertEquals( |
|
|
self::assertEquals( |
|
|
expected: "UNLINK test OF {$this->TestUUID}", |
|
|
expected: "UNLINK test OF {$this->TestUUID}", |
|
|
actual: QueryBuilder::Unlink() |
|
|
actual: QueryBuilder::Unlink() |
|
|
->PropertyName("test") |
|
|
->UnlinkWhat("test") |
|
|
->Of() |
|
|
->Of($this->TestUUID) |
|
|
->RelativePath($this->TestUUID) |
|
|
|
|
|
->Build() |
|
|
->Build() |
|
|
); |
|
|
); |
|
|
} |
|
|
} |
|
@ -39,10 +37,9 @@ final class QueryBuilderUnlinkTest extends TestCase |
|
|
self::assertEquals( |
|
|
self::assertEquals( |
|
|
expected: "UNLINK test FROM {$this->TestUUID}", |
|
|
expected: "UNLINK test FROM {$this->TestUUID}", |
|
|
actual: QueryBuilder::Unlink() |
|
|
actual: QueryBuilder::Unlink() |
|
|
->PropertyName("test") |
|
|
->UnlinkWhat("test") |
|
|
->From() |
|
|
->From($this->TestUUID) |
|
|
->Of() |
|
|
->Of($this->TestUUID) |
|
|
->RelativePath($this->TestUUID) |
|
|
|
|
|
->Build() |
|
|
->Build() |
|
|
); |
|
|
); |
|
|
} |
|
|
} |
|
|