Change record status: 
Project: 
Introduced in branch: 
11.2.x
Introduced in version: 
11.2.0
Description: 

entity_test_create_bundle() is deprecated and replaced with the \Drupal\entity_test\EntityTestHelper::createBundle().
entity_test_delete_bundle() is deprecated and replaced with the \Drupal\entity_test\EntityTestHelper::deleteBundle().

Before:

entity_test_create_bundle($bundle, $text, $entity_type);
entity_test_delete_bundle($bundle, $entity_type);

After:

use Drupal\entity_test\EntityTestHelper;
EntityTestHelper::createBundle($bundle, $text, $entity_type);
EntityTestHelper::deleteBundle($bundle, $entity_type);
Impacts: 
Module developers