How Do You Run a Unit Test in Apex?
To facilitate the development of robust, error-free code, Apex supports the creation and execution of unit tests.
Join the DZone community and get the full member experience.
Join For FreeTo facilitate the development of robust, error-free code, Apex supports the creation and execution of unit tests. Unit tests are class methods that verify whether a particular piece of code is working properly. Unit test methods take no arguments, commit no data to the database, and send no emails. Such methods are flagged with the @isTest annotation in the method definition. Unit test methods must be defined in test classes, that is, classes annotated with @isTest.
For example:
private class myClass {
static void myTest() {
// code_block } }
Here is the same test class as in the previous example but it defines the test method with the (now deprecated) testMethod keyword instead.
xxxxxxxxxx
private class myClass {
static testMethod void myTest() {
// code_block } }
Use the @isTest annotation to define classes and methods that only contain code used for testing your application. The @isTest annotation can take multiple modifiers within parentheses and separated by blanks.
This example of a test class contains two test methods.
xxxxxxxxxx
private class MyTestClass {
// Methods for testing @isTest static void test1() {
// Implement test code }
static void test2() {
// Implement test code }
}
Classes and methods defined as @isTest can be either private or public. The access level of test class methods doesn’t matter. You need not add an access modifier when defining a test class or test method. The default access level in Apex is private. The testing framework can always find the test methods and execute them, regardless of their access level.
Classes defined as @isTest must be top-level classes and can't be interfaces or enums.
Methods of a test class can only be called from a test method or code invoked by a test method; non-test requests can’t invoke it.
This example shows a class to be tested and its corresponding test class. It contains two methods and a constructor.
xxxxxxxxxx
public class TVRemoteControl {
// Volume to be modified Integer volume;
// Constant for maximum volume value static final Integer MAX_VOLUME = 50;
// Constructor public TVRemoteControl(Integer v) {
// Set initial value for volume volume = v; }
public Integer increaseVolume(Integer amount) {
volume += amount;
if (volume > MAX_VOLUME) {
volume = MAX_VOLUME; }
return volume; }
public Integer decreaseVolume(Integer amount) {
volume -= amount; if (volume < 0) {
volume = 0; } return volume; }
public static String getMenuOptions() {
return 'AUDIO SETTINGS - VIDEO SETTINGS'; } }
This example contains the corresponding test class with four test methods. Each method in the previous class is called. Although there is sufficient test coverage, the test methods in the test class perform extra testing to verify boundary conditions.
xxxxxxxxxx
class TVRemoteControlTest {
static void testVolumeIncrease() {
TVRemoteControl rc = new TVRemoteControl(10);
Integer newVolume = rc.increaseVolume(15);
System.assertEquals(25, newVolume); }
static void testVolumeDecrease() {
TVRemoteControl rc = new TVRemoteControl(20);
Integer newVolume = rc.decreaseVolume(15);
System.assertEquals(5, newVolume); }
static void testVolumeIncreaseOverMax() {
TVRemoteControl rc = new TVRemoteControl(10);
Integer newVolume = rc.increaseVolume(100);
System.assertEquals(50, newVolume); }
static void testVolumeDecreaseUnderMin() {
TVRemoteControl rc = new TVRemoteControl(10);
Integer newVolume = rc.decreaseVolume(100);
System.assertEquals(0, newVolume); }
static void testGetMenuOptions() {
// Static method call. No need to create a class instance.
String menu = TVRemoteControl.getMenuOptions();
System.assertNotEquals(null, menu);
System.assertNotEquals('', menu); } }
Unit Test Considerations
Here are some things to note about unit tests.
- Starting with Salesforce integration API 28.0, test methods can no longer reside in non-test classes and must be part of classes annotated with isTest. See the TestVisible annotation to learn how you can access private class members from a test class.
- Test methods can’t be used to test Web service callouts. Instead, use mock callouts. See Test Web Service Callouts and Testing HTTP Callouts.
- You can’t send email messages from a test method.
- Since test methods don’t commit data created in the test, you don’t have to delete test data upon completion.
- If the value of a static member variable in a test class is changed in a testSetup or test method, the new value isn’t preserved. Other test methods in this class get the original value of the static member variable. This behavior also applies when the static member variable is defined in another class and accessed in test methods.
- For some sObjects that have fields with unique constraints, inserting duplicate sObject records results in an error. For example, inserting CollaborationGroup sObjects with the same names results in an error because CollaborationGroup records must have unique names.
- Tracked changes for a record (FeedTrackedChange records) in Chatter feeds aren't available when test methods modify the associated record. FeedTrackedChange records require the change to the parent record they're associated with to be committed to the database before they're created. Since test methods don't commit data, they don't result in the creation of FeedTrackedChange records. Similarly, field history tracking records can't be created in test methods because they require other sObject records to be committed first. For example, AccountHistory records can’t be created in test methods because Account records must be committed first.
Published at DZone with permission of Shailesh Chaudhary. See the original article here.
Opinions expressed by DZone contributors are their own.
Trending
-
Decoding eBPF Observability: How eBPF Transforms Observability as We Know It
-
From CPU to Memory: Techniques for Tracking Resource Consumption Over Time
-
How AI Will Change Agile Project Management
-
5 Common Data Structures and Algorithms Used in Machine Learning
Comments