-
Notifications
You must be signed in to change notification settings - Fork 1
StyleGuide
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