Horde_Kolab_Server_Integration_Scenario::assertSimpleSequence PHP Метод

assertSimpleSequence() защищенный Метод

Assert that a save() operation yields some predictable attribute results.
protected assertSimpleSequence ( Horde_Kolab_Server_Object $object, Horde_Kolab_Server $server, string $attribute, array $sequence, $pop_arrays = false ) : NULL.
$object Horde_Kolab_Server_Object The object to work on.
$server Horde_Kolab_Server The server the object resides on.
$attribute string The attribute to work on.
$sequence array The sequence of values to set and expect.
Результат NULL.
    protected function assertSimpleSequence(Horde_Kolab_Server_Object $object, Horde_Kolab_Server $server, $attribute, array $sequence, $pop_arrays = false)
    {
        foreach ($sequence as $value) {
            $this->assertStoreFetch($object, $server, array($attribute => $value), array($attribute => $value), $pop_arrays);
        }
    }