How to write PHPUnit Test for a module in Magento 2?

All the Core module in Magento natively comes with Unit and Integration Test.

As a professional Developer, When you create any module for your project, You should have to write Unit Test for your module code to validate your code is errorless.

Write a Unit test for your module, Gives guarantee your code is bug-free with Find problems earlier before going live and if any error available for a code, you can update the code before code is going to a production server. Continue reading “How to write PHPUnit Test for a module in Magento 2?”

How to check the status of each test in PHPUnit Test using CLI?

You can check the status of each Unit Test in PHP using single character output.

For each test run, the PHPUnit command-line tool prints one character to indicate result(status) of each test, Continue reading “How to check the status of each test in PHPUnit Test using CLI?”

List of Composite products in Magento.

What are Composite Products?
Composite Products can be used to create a product grouping(kits) and complex products by grouping existing simple or virtual products.

Composite products made using simple or virtual products combinations.

Magento Commerce contains total seven Native Products. Opensource contains only six product type except Gift Card. Continue reading “List of Composite products in Magento.”