You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Patrick Connelly edited this page Aug 2, 2016
·
1 revision
#Naming Convention
##Class Naming
When naming classes, use CamelCase for class names and the initial letter should be capitalized
###Example
For my trigger class the name should be MyTrigger.cls
##Test Naming
Tests should be named the same as the class they are testing but appended with _Test
###Example
The test for MyTrigger.cls should be named MyTrigger_Test.cls