Magento 2 Unit Test
Mageplaza publishes Mageplaza 2 Unit Test article, that belongs the free knowledge base string for Magento 2 store owners. The topic is helpful for those who are the beginners and really want to get familiar with the unit tests. To make the guide clear, we will approach to two different ways including:
- Command Line Interface (CLI)
- PHPStorm IDE
Before carrying out the unit tests in Magento 2, let’s glance at the overview of the unit test.
Contents
What is Unit Test in Magento 2?
Unit Testing is a crucial operation, a set of the smallest testable parts of an application, which are called as units, in the development of a software. The unit testing will ensure that the codes you wrote are running correctly as well as raise the software’s quality you created before. In addition, remember that the unit testing process is separate and completely automatic without any manual handling.
Why Unit Test?
Magento 2 Unit Test allows auto-defining some errors before launching the software instead of that the developers have to do it by themselves. Due to that, the more powerful unit testing process, the better management of the project managers and functional managers. The unit test plays a role in improving the manageability like:
- Tests Reduce Bugs in New Features
- Tests Reduce Bugs in Existing Features
- Tests Are Good Documentation
- Tests Reduce the Cost of Change
- Tests Allow Refactoring
- Tests Constrain Features
- Tests Defend Against Other Programmers
- Testing Makes Development Faster
Thus, generating a unit test is the important first step for the high quality of the new class. Don’t forget that you can find the unit test in app/code/[Vendor]/[ModuleName]/Test/Unit
.
How to run Magento 2 Unit Test
Step 1: Create a test file
Create a test file: app/code/Mageplaza/HelloWorldTest/Unit/Model/PostTest.php
<?php
namespace Mageplaza\HelloWorld\Test\Unit\Model;
class PostTest extends \PHPUnit_Framework_TestCase {
/**
* Is called once before running all test in class
*/
static function setUpBeforeClass()
{
}
/**
* Is called once after running all test in class
*/
static function tearDownAfterClass()
{
}
/**
* Is called before running a test
*/
protected function setUp()
{
}
/**
* Is called after running a test
*/
protected function tearDown()
{
}
/**
* The test itself, every test function must start with 'test'
*/
public function testTest()
{
$this->assertTrue(false);
}
}
Step 2: Run Unit test
Run the following command to check the result
bin/magento dev:tests:run unit
Enjoyed the tutorial? Spread it to your friends!

Sam Thomas
CEO and Founder of Mageplaza. Pursueing a simple and healthy lifestyle. A friend, a husband and a dad of two children, a trainer and an influencer wannabe. He is a big fan of sports and travel, also.
Featured Extensions








People also searched for
- Magento 2 Unit Test
- magento 2 run unit tests
- magento 2 testing framework
- magento 2 writing unit tests
- magento 2 phpunit
- magento phpunit test
- magento 2 performance test
- magento 2 tegration tests
- magento 2 run tests
- 2.2.x, 2.3.x, 2.4.x