In Apex, what method allows you to insert test data and bypass validation rules and triggers for faster test setup?
-
A
Database.insert(records, false)
-
B
Test.loadData()
-
C
Database.upsert() with allOrNone=false
-
D
There is no such method; all DML runs triggers