for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dynamic\FoxyStripe\Test;
use SilverStripe\Dev\FunctionalTest;
class FS_Test extends FunctionalTest
{
/**
* @var string
*/
protected static $fixture_file = 'fixtures.yml';
* @var bool
protected static $disable_themes = true;
protected static $use_draft_site = false;
*
public function setUp()
parent::setUp();
ini_set('display_errors', 1);
ini_set('log_errors', 1);
error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
}
public function logOut()
$this->session()->clear('loggedInAs');
public function testProductPage()