Skip to content

Instantly share code, notes, and snippets.

@enreeco
Last active January 30, 2024 06:17
Show Gist options
  • Save enreeco/270f7b277b93a591450e9a01d5ee30ff to your computer and use it in GitHub Desktop.
Save enreeco/270f7b277b93a591450e9a01d5ee30ff to your computer and use it in GitHub Desktop.
Apex Test Class Template
/**
* 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