You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					17 lines
				
				335 B
			
		
		
			
		
	
	
					17 lines
				
				335 B
			| 
								 
											8 years ago
										 
									 | 
							
								<?php
							 | 
						||
| 
								 | 
							
								/**
							 | 
						||
| 
								 | 
							
								 * Here you can initialize variables via \Codeception\Util\Fixtures class
							 | 
						||
| 
								 | 
							
								 * to store data in global array and use it in Tests.
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * ```php
							 | 
						||
| 
								 | 
							
								 * // Here _bootstrap.php
							 | 
						||
| 
								 | 
							
								 * \Codeception\Util\Fixtures::add('user1', ['name' => 'davert']);
							 | 
						||
| 
								 | 
							
								 * ```
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * In Tests
							 | 
						||
| 
								 | 
							
								 *
							 | 
						||
| 
								 | 
							
								 * ```php
							 | 
						||
| 
								 | 
							
								 * \Codeception\Util\Fixtures::get('user1');
							 | 
						||
| 
								 | 
							
								 * ```
							 | 
						||
| 
								 | 
							
								 */
							 |