A developer created this Apex trigger that calls MyClass.myStaticMsthod: trigger myTrigger on Contact (before insert) { MyClass.myStaticMethod(trigger.new, trigger.oldMap); } The developer creates a test class with a test method that calls Myclass.myStacicMethod directly, resulting in 81% overall code coverage. What happens when the developer tries to deploy the trigger and two classes to production, assuming no other code exists? What happens when the developer tries to deploy the trigger and two classes t
A. The deployment falls because no assertions were made in the test method
B. The deployment passes because both classes and the trigger were included in the deployment
C. The deployment fails because the Apex trigger has no code coverage
D. The deployment passes because the Apex code has the required =75% code coverage