Class EntryLockingStringMapTest.
More...
◆ setUp()
ILIAS\FileUpload\Collection\EntryLockingStringMapTest::setUp |
( |
| ) |
|
◆ testGetWhichShouldSucceed()
ILIAS\FileUpload\Collection\EntryLockingStringMapTest::testGetWhichShouldSucceed |
( |
| ) |
|
◆ testGetWithoutPutTheValueWhichShouldFail()
ILIAS\FileUpload\Collection\EntryLockingStringMapTest::testGetWithoutPutTheValueWhichShouldFail |
( |
| ) |
|
Definition at line 84 of file EntryLockingStringMapTest.php.
88 $this->expectException(NoSuchElementException::class);
89 $this->expectExceptionMessage(
"No meta data associated with key \"$key\".");
90 $this->subject->get($key);
◆ testPutValueTwiceWhichShouldFail()
ILIAS\FileUpload\Collection\EntryLockingStringMapTest::testPutValueTwiceWhichShouldFail |
( |
| ) |
|
Definition at line 54 of file EntryLockingStringMapTest.php.
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);
◆ testPutValueWhichShouldSucceed()
ILIAS\FileUpload\Collection\EntryLockingStringMapTest::testPutValueWhichShouldSucceed |
( |
| ) |
|
◆ $subject
ILIAS\FileUpload\Collection\EntryLockingStringMapTest::$subject |
|
private |
The documentation for this class was generated from the following file: