diff options
Diffstat (limited to 'tests/lib/Memcache/APCuTest.php')
-rw-r--r-- | tests/lib/Memcache/APCuTest.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/lib/Memcache/APCuTest.php b/tests/lib/Memcache/APCuTest.php index 73fd5a12880..41de75a8ea8 100644 --- a/tests/lib/Memcache/APCuTest.php +++ b/tests/lib/Memcache/APCuTest.php @@ -19,4 +19,16 @@ class APCuTest extends Cache { } $this->instance=new \OC\Memcache\APCu($this->getUniqueID()); } + + public function testCasIntChanged() { + $this->instance->set('foo', 1); + $this->assertTrue($this->instance->cas('foo', 1, 2)); + $this->assertEquals(2, $this->instance->get('foo')); + } + + public function testCasIntNotChanged() { + $this->instance->set('foo', 1); + $this->assertFalse($this->instance->cas('foo', 2, 3)); + $this->assertEquals(1, $this->instance->get('foo')); + } } |