webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
hamcrest
/
hamcrest-php
/
tests
/
Hamcrest
/
Array
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
IsArrayContainingInAnyO
...
1.684KB
edt
ren
IsArrayContainingInOrde
...
1.524KB
edt
ren
IsArrayContainingKeyTes
...
1.561KB
edt
ren
IsArrayContainingKeyVal
...
1.072KB
edt
ren
IsArrayContainingTest.php
1.231KB
edt
ren
IsArrayTest.php
2.436KB
edt
ren
IsArrayWithSizeTest.php
1.128KB
edt
ren
<?php namespace Hamcrest\Arrays; use Hamcrest\AbstractMatcherTest; class IsArrayWithSizeTest extends AbstractMatcherTest { protected function createMatcher() { return IsArrayWithSize::arrayWithSize(equalTo(2)); } public function testMatchesWhenSizeIsCorrect() { $this->assertMatches(arrayWithSize(equalTo(3)), array(1, 2, 3), 'correct size'); $this->assertDoesNotMatch(arrayWithSize(equalTo(2)), array(1, 2, 3), 'incorrect size'); } public function testProvidesConvenientShortcutForArrayWithSizeEqualTo() { $this->assertMatches(arrayWithSize(3), array(1, 2, 3), 'correct size'); $this->assertDoesNotMatch(arrayWithSize(2), array(1, 2, 3), 'incorrect size'); } public function testEmptyArray() { $this->assertMatches(emptyArray(), array(), 'correct size'); $this->assertDoesNotMatch(emptyArray(), array(1), 'incorrect size'); } public function testHasAReadableDescription() { $this->assertDescription('an array with size <3>', arrayWithSize(equalTo(3))); $this->assertDescription('an empty array', emptyArray()); } }
<=Back
Liking