PHP code example of magetest / manager
1. Go to this page and download the library: Download magetest/manager library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
magetest / manager example snippets
php
use MageTest\Manager\FixtureManager,
MageTest\Manager\Attributes\Provider\YamlProvider;
//init Manager and define attributes provider. Default is YAML
$manager = new FixtureManager(new YamlProvider());
//Load fixture by model type into manager
$manager->loadFixture('customer/customer');
//Use key defined in fixture file, to return instance of fixture model
$customer = $manager->getFixture('customer/customer');
//Use customer model, change values/behaviour, assert data for acceptance tests
//Delete all fixtures from Magento test environment DB
$manager->clear();