Best Atoum code snippet using phpArray.contains
CollectionDefaultTest.php
Source:CollectionDefaultTest.php
...98 }99 public function testContainsScalarValues()100 {101 $col = new Collection('int', [-3, 3]);102 $this->assertFalse($col->contains(9));103 $col->add(9);104 $this->assertTrue($col->contains(9));105 }106 public function testContainsObjects()107 {108 $onehundred = new Samples\Foo(100);109 $twohundred = new Samples\Foo(200);110 $col = new Collection(Samples\Foo::class, [$onehundred, $twohundred]);111 $this->assertTrue($col->contains($onehundred));112 $this->assertTrue($col->contains($twohundred));113 $zero = new Samples\Foo(0);114 $this->assertFalse($col->contains($zero));115 $onezerozero = new Samples\Foo(100);116 $this->assertFalse($col->contains($onezerozero), 'method contains does not make an identical comparison');117 }118 public function testContainsAll()119 {120 $phpArray = [-3, 0, 3];121 $col = new Collection('int', [-3, 0, 3]);122 // empty123 $this->assertTrue($col->containsAll([]));124 // same elements125 $this->assertTrue($col->containsAll($phpArray));126 // more elements127 $this->assertFalse($col->containsAll(array_merge($phpArray, [9])));128 // less elements129 array_shift($phpArray);130 $this->assertTrue($col->containsAll($phpArray));131 }132 public function testContainsAny()133 {134 $col = new Collection('int', [-3, 0, 3]);135 // empty136 $this->assertFalse($col->containsAny([]));137 // completely different elements138 $this->assertFalse($col->containsAny([-6, 6]));139 // include at least one match element140 $this->assertTrue($col->containsAny([-6, 6, -3]));141 }142 public function testRemove()143 {144 $onehundred = new Samples\Foo(100);145 $twohundred = new Samples\Foo(200);146 $col = new Collection(Samples\Foo::class, [147 $onehundred,148 $twohundred,149 $onehundred,150 ]);151 // remove a not contained item152 $zero = new Samples\Foo(0);153 $this->assertFalse($col->remove($zero));154 $this->assertCount(3, $col);...
ExportPhparrayTest.php
Source:ExportPhparrayTest.php
1<?php2/* vim: set expandtab sw=4 ts=4 sts=4: */3/**4 * tests for PMA\libraries\plugins\export\ExportPhparray class5 *6 * @package PhpMyAdmin-test7 */8use PMA\libraries\plugins\export\ExportPhparray;9require_once 'libraries/export.lib.php';10require_once 'libraries/config.default.php';11require_once 'export.php';12require_once 'test/PMATestCase.php';13/**14 * tests for PMA\libraries\plugins\export\ExportPhparray class15 *16 * @package PhpMyAdmin-test17 * @group medium18 */19class ExportPhparrayTest extends PMATestCase20{21 protected $object;22 /**23 * Configures global environment.24 *25 * @return void26 */27 function setup()28 {29 $GLOBALS['server'] = 0;30 $GLOBALS['output_kanji_conversion'] = false;31 $GLOBALS['output_charset_conversion'] = false;32 $GLOBALS['buffer_needed'] = false;33 $GLOBALS['asfile'] = true;34 $GLOBALS['save_on_server'] = false;35 $this->object = new ExportPhparray();36 }37 /**38 * tearDown for test cases39 *40 * @return void41 */42 public function tearDown()43 {44 unset($this->object);45 }46 /**47 * Test for PMA\libraries\plugins\export\ExportPhparray::setProperties48 *49 * @return void50 */51 public function testSetProperties()52 {53 $method = new ReflectionMethod('PMA\libraries\plugins\export\ExportPhparray', 'setProperties');54 $method->setAccessible(true);55 $method->invoke($this->object, null);56 $attrProperties = new ReflectionProperty('PMA\libraries\plugins\export\ExportPhparray', 'properties');57 $attrProperties->setAccessible(true);58 $properties = $attrProperties->getValue($this->object);59 $this->assertInstanceOf(60 'PMA\libraries\properties\plugins\ExportPluginProperties',61 $properties62 );63 $this->assertEquals(64 'PHP array',65 $properties->getText()66 );67 $this->assertEquals(68 'php',69 $properties->getExtension()70 );71 $this->assertEquals(72 'text/plain',73 $properties->getMimeType()74 );75 $this->assertEquals(76 'Options',77 $properties->getOptionsText()78 );79 $options = $properties->getOptions();80 $this->assertInstanceOf(81 'PMA\libraries\properties\options\groups\OptionsPropertyRootGroup',82 $options83 );84 $this->assertEquals(85 'Format Specific Options',86 $options->getName()87 );88 $generalOptionsArray = $options->getProperties();89 $generalOptions = $generalOptionsArray[0];90 $this->assertInstanceOf(91 'PMA\libraries\properties\options\groups\OptionsPropertyMainGroup',92 $generalOptions93 );94 $this->assertEquals(95 'general_opts',96 $generalOptions->getName()97 );98 $generalProperties = $generalOptions->getProperties();99 $property = array_shift($generalProperties);100 $this->assertInstanceOf(101 'PMA\libraries\properties\options\items\HiddenPropertyItem',102 $property103 );104 }105 /**106 * Test for PMA\libraries\plugins\export\ExportPhparray::exportHeader107 *108 * @return void109 */110 public function testExportHeader()111 {112 $GLOBALS['crlf'] = ' ';113 ob_start();114 $this->assertTrue(115 $this->object->exportHeader()116 );117 $result = ob_get_clean();118 $this->assertContains(119 '<?php ',120 $result121 );122 }123 /**124 * Test for PMA\libraries\plugins\export\ExportPhparray::exportFooter125 *126 * @return void127 */128 public function testExportFooter()129 {130 $this->assertTrue(131 $this->object->exportFooter()132 );133 }134 /**135 * Test for PMA\libraries\plugins\export\ExportPhparray::exportDBHeader136 *137 * @return void138 */139 public function testExportDBHeader()140 {141 $GLOBALS['crlf'] = "\n";142 ob_start();143 $this->assertTrue(144 $this->object->exportDBHeader("db")145 );146 $result = ob_get_clean();147 $this->assertContains(148 "/**\n * Database `db`\n */",149 $result150 );151 }152 /**153 * Test for PMA\libraries\plugins\export\ExportPhparray::exportDBFooter154 *155 * @return void156 */157 public function testExportDBFooter()158 {159 $this->assertTrue(160 $this->object->exportDBFooter('testDB')161 );162 }163 /**164 * Test for PMA\libraries\plugins\export\ExportPhparray::exportDBCreate165 *166 * @return void167 */168 public function testExportDBCreate()169 {170 $this->assertTrue(171 $this->object->exportDBCreate('testDB', 'database')172 );173 }174 /**175 * Test for PMA\libraries\plugins\export\ExportPhparray::exportData176 *177 * @return void178 */179 public function testExportData()180 {181 $dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface')182 ->disableOriginalConstructor()183 ->getMock();184 $dbi->expects($this->once())185 ->method('query')186 ->with('SELECT', null, PMA\libraries\DatabaseInterface::QUERY_UNBUFFERED)187 ->will($this->returnValue(true));188 $dbi->expects($this->once())189 ->method('numFields')190 ->with(true)191 ->will($this->returnValue(2));192 $dbi->expects($this->at(2))193 ->method('fieldName')194 ->with(true, 0)195 ->will($this->returnValue('c1'));196 $dbi->expects($this->at(3))197 ->method('fieldName')198 ->with(true, 1)199 ->will($this->returnValue(''));200 $dbi->expects($this->at(4))201 ->method('fetchRow')202 ->with(true)203 ->will($this->returnValue(array(1, 'a')));204 $dbi->expects($this->at(5))205 ->method('fetchRow')206 ->with(true)207 ->will($this->returnValue(null));208 $GLOBALS['dbi'] = $dbi;209 ob_start();210 $this->assertTrue(211 $this->object->exportData(212 'db', 'table', "\n", 'phpmyadmin.net/err', 'SELECT'213 )214 );215 $result = ob_get_clean();216 $this->assertEquals(217 "\n" . '/* `db`.`table` */' . "\n" .218 '$table = array(' . "\n" .219 ' array(\'c1\' => 1,\'\' => \'a\')' . "\n" .220 ');' . "\n",221 $result222 );223 // case 2: test invalid variable name fix224 $dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface')225 ->disableOriginalConstructor()226 ->getMock();227 $dbi->expects($this->once())228 ->method('query')229 ->with('SELECT', null, PMA\libraries\DatabaseInterface::QUERY_UNBUFFERED)230 ->will($this->returnValue(true));231 $dbi->expects($this->once())232 ->method('numFields')233 ->with(true)234 ->will($this->returnValue(0));235 $dbi->expects($this->at(2))236 ->method('fetchRow')237 ->with(true)238 ->will($this->returnValue(null));239 $GLOBALS['dbi'] = $dbi;240 ob_start();241 $this->assertTrue(242 $this->object->exportData(243 'db', '0`932table', "\n", 'phpmyadmin.net/err', 'SELECT'244 )245 );246 $result = ob_get_clean();247 $this->assertContains(248 '$_0_932table',249 $result250 );251 }252}...
contains
Using AI Code Generation
1include 'phpArray.php';2$phpArray=new phpArray();3$phpArray->add(1);4$phpArray->add(2);5$phpArray->add(3);6$phpArray->add(4);7$phpArray->add(5);8$phpArray->add(6);9$phpArray->add(7);10$phpArray->add(8);11$phpArray->add(9);12$phpArray->add(10);13$phpArray->add(11);14$phpArray->add(12);15$phpArray->add(13);16$phpArray->add(14);17$phpArray->add(15);18$phpArray->add(16);19$phpArray->add(17);20$phpArray->add(18);21$phpArray->add(19);22$phpArray->add(20);23$phpArray->add(21);24$phpArray->add(22);25$phpArray->add(23);26$phpArray->add(24);27$phpArray->add(25);28$phpArray->add(26);29$phpArray->add(27);30$phpArray->add(28);31$phpArray->add(29);32$phpArray->add(30);33$phpArray->add(31);34$phpArray->add(32);35$phpArray->add(33);36$phpArray->add(34);37$phpArray->add(35);38$phpArray->add(36);39$phpArray->add(37);40$phpArray->add(38);41$phpArray->add(39);42$phpArray->add(40);43$phpArray->add(41);44$phpArray->add(42);45$phpArray->add(43);46$phpArray->add(44);47$phpArray->add(45);48$phpArray->add(46);49$phpArray->add(47);50$phpArray->add(48);51$phpArray->add(49);52$phpArray->add(50);53$phpArray->add(51);54$phpArray->add(52);55$phpArray->add(53);56$phpArray->add(54);57$phpArray->add(55);58$phpArray->add(56);59$phpArray->add(57);60$phpArray->add(58);61$phpArray->add(59);62$phpArray->add(60);
contains
Using AI Code Generation
1require_once 'phpArray.php';2$phpArray = new phpArray();3$phpArray->add('a');4$phpArray->add('b');5$phpArray->add('c');6$phpArray->add('d');7$phpArray->add('e');8$phpArray->add('f');9$phpArray->add('g');10$phpArray->add('h');11$phpArray->add('i');12$phpArray->add('j');13$phpArray->add('k');14$phpArray->add('l');15$phpArray->add('m');16$phpArray->add('n');17$phpArray->add('o');18$phpArray->add('p');19$phpArray->add('q');20$phpArray->add('r');21$phpArray->add('s');22$phpArray->add('t');23$phpArray->add('u');24$phpArray->add('v');25$phpArray->add('w');26$phpArray->add('x');27$phpArray->add('y');28$phpArray->add('z');29$phpArray->contains('w');
contains
Using AI Code Generation
1include "phpArray.php";2$a=array("a"=>"red","b"=>"green","c"=>"blue","d"=>"yellow");3$myarray=new phpArray($a);4$myarray->contains("red");5include "phpArray.php";6$a=array("a"=>"red","b"=>"green","c"=>"blue","d"=>"yellow");7$myarray=new phpArray($a);8$myarray->count();9include "phpArray.php";10$a=array("a"=>"red","b"=>"green","c"=>"blue","d"=>"yellow");11$myarray=new phpArray($a);12$myarray->current();13include "phpArray.php";14$a=array("red","green","blue","yellow");15$myarray=new phpArray($a);16$myarray->each();17include "phpArray.php";18$a=array("red","green","blue","yellow");19$myarray=new phpArray($a);20$myarray->end();
contains
Using AI Code Generation
1include 'phpArray.php';2$array = new phpArray();3$arr = array(1,2,3,4,5,6,7,8,9,10);4$array->addArray($arr);5if($array->contains(1)){6 echo "The array contains the value 1";7}else{8 echo "The array does not contain the value 1";9}10echo "<br>";11if($array->contains(11)){12 echo "The array contains the value 11";13}else{14 echo "The array does not contain the value 11";15}
contains
Using AI Code Generation
1$array = array("a", "b", "c");2if(phpArray::contains($array, "a")){3 echo "a is present in the array";4}5else{6 echo "a is not present in the array";7}
contains
Using AI Code Generation
1require_once "phpArray.php";2$phpArrayObj = new phpArray();3$array = array(1,2,3,4,5);4$phpArrayObj->addArray($array);5var_dump($phpArrayObj->contains(3));6var_dump($phpArrayObj->contains(6));
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Execute automation tests with contains on a cloud-based Grid of 3000+ real browsers and operating systems for both web and mobile applications.
Test now for FreeGet 100 minutes of automation test minutes FREE!!