for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Class ProductWishListControllerExtensionTest
*/
class ProductWishListControllerExtensionTest extends FunctionalTest
{
* @var string
public static $fixture_file = 'product-wishlist/tests/fixtures.yml';
* @var array
protected $extraDataObjects = [
'TestWishListPage',
'TestProductWishList',
];
*
public function testProductWishListForm()
$controller = new TestWishListPage_Controller($this->objFromFixture('TestWishListPage', 'one'));
$this->assertInstanceOf('Form', $controller->ProductWishListForm());
}