Last active
January 30, 2024 06:17
-
-
Save enreeco/270f7b277b93a591450e9a01d5ee30ff to your computer and use it in GitHub Desktop.
Apex Test Class Template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Title | |
* | |
* @author | |
* @version 1.0 | |
* @description | |
* @uses | |
* @history | |
* yyyy-mm-dd : | |
*/ | |
@isTest | |
private class MyTestClass { | |
@testSetup | |
static void setup(){ | |
} | |
@isTest | |
static void myUnitTest() { | |
Test.startTest(); | |
Test.stopTest(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment