๐. ๐๐จ๐๐ ๐ฌ๐ญ๐จ๐ซ๐๐ ๐
You can save up to 6 MB of Apex code in each org, but test classes annotated with @isTest don’t count toward this limit.
๐. ๐๐จ ๐ฌ๐๐ฉ๐๐ซ๐๐ญ๐ ๐๐๐ญ๐๐๐๐ฌ๐ ๐๐จ๐ซ ๐ญ๐๐ฌ๐ญ๐ข๐ง๐
Even though test data rolls back, it still uses the same database. For objects with unique field constraints, inserting duplicates in tests can result in errors. Be careful!
๐. ๐๐๐ฌ๐ญ ๐ฆ๐๐ญ๐ก๐จ๐๐ฌ ๐๐จ๐ง’๐ญ ๐ฌ๐๐ง๐ ๐๐ฆ๐๐ข๐ฅ๐ฌ
No worries about accidentally spamming your users. Test methods are safe from triggering emails.
๐. ๐๐จ ๐๐ฑ๐ญ๐๐ซ๐ง๐๐ฅ ๐๐๐ฅ๐ฅ๐จ๐ฎ๐ญ๐ฌ ๐ข๐ง ๐ญ๐๐ฌ๐ญ๐ฌ
Test methods can’t make callouts to external services, but you can use mock callouts to simulate API responses.
๐. ๐๐๐๐ ๐ฌ๐๐๐ซ๐๐ก๐๐ฌ
Any SOSL search in a test returns empty results by default. To ensure predictable results,
use Test.setFixedSearchResults() to define the records you want.
No comments:
Post a Comment