Edit in GitHubLog an issue

Application area annotation

Configure a test environment in scope of the particular application area with the @magentoAppArea annotation.

Format

Copied to your clipboard
/**
* @magentoAppArea <area code>
*/

Fallback sequence

  1. Test annotation
  2. Test case annotation
  3. Default application area, which is global

Test case annotation

A test case annotation enables the specified application area for all tests in the test case.

Example:

Copied to your clipboard
/**
* @magentoAppArea adminhtml
*/
namespace Vendor\Module;
class ClassToTest extends \PHPUnit\Framework\TestCase
{
public function testOne()
{
//...
}
/**
* @magentoAppArea frontend
*/
public function testTwo()
{
//...
}
public function testThree()
{
//...
}
}

testOne() and testThree() are set to run in scope of the adminhtml application area, whereas testTwo() is set to run in scope of the frontend area.

Test annotation

A test annotation is used to configure the environment in scope of the specified application area for the test. Commerce is reinitialized in the corresponding scope each time you specify a different area.

Example:

Copied to your clipboard
namespace \Vendor\Module;
class ClassToTest extends \PHPUnit\Framework\TestCase
{
// executes the test in scope of the global area
public function testOne()
{
//...
}
// reinitializes the application and executes the test in scope of the frontend area
/**
* @magentoAppArea frontend
*/
public function testTwo()
{
//...
}
// reinitializes the application and executes the test in scope of the adminhtml area
/**
* @magentoAppArea adminhtml
*/
public function testThree()
{
//...
}
// reinitializes the application and executes the test in scope of the global area
public function testFour()
{
//...
}
// executes in scope of the global area
public function testFive()
{
//...
}
}
  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2024 Adobe. All rights reserved.