9 require_once
'./libs/composer/vendor/autoload.php';
44 $this->subject->put($key, $value);
45 $result = $this->subject->toArray();
47 $this->assertArrayHasKey($key,
$result);
48 $this->assertEquals($value,
$result[$key]);
59 $this->subject->put($key, $value);
61 $this->expectException(ElementAlreadyExistsException::class);
62 $this->expectExceptionMessage(
"Element $key can not be overwritten.");
64 $this->subject->put($key, $value);
75 $this->subject->put($key, $value);
76 $result = $this->subject->get($key);
78 $this->assertEquals($value,
$result);
88 $this->expectException(NoSuchElementException::class);
89 $this->expectExceptionMessage(
"No meta data associated with key \"$key\".");
90 $this->subject->get($key);
testGetWithoutPutTheValueWhichShouldFail()
Class EntryLockingStringMap.
testPutValueWhichShouldSucceed()
Class EntryLockingStringMapTest.
testGetWhichShouldSucceed()
testPutValueTwiceWhichShouldFail()