How to unit test works in salesforce?

后端 未结 3 1230
半阙折子戏
半阙折子戏 2021-01-21 08:25

I\'ve done writing code on salesforce and in order to release the unit tests have to cover at least 75%.

What I am facing is that the classOne

相关标签:
3条回答
  • 2021-01-21 08:26

    I created an Apex class called TestHelper for all my mock objects. I use constants (static final) for values that I might need elsewhere and public static fields for objects. Works great and since no methods are used, no test coverage is needed.

    public without sharing class TestHelper {
    public static final string testPRODUCTNAME = 'test Product Name';
    public static final string testCOMPANYID = '2508'; 
    
    public static Account testAccount {
        get{
            Account tAccount = new Account(
                Name = 'Test Account',
                BillingStreet = '123 Main St',
                BillingCity = 'Dallas',
                BillingState = 'TX',
                BillingPostalCode = '75234',
                Website = 'http://www.google.com',
                Phone = '222 345 4567',                
                Subscription_Start_Date__c = system.today(),
                Subscription_End_Date__c = system.today().addDays(30),
                Number_Of_Seats__c = 1,
                companyId__c = testCOMPANYID,
                ZProduct_Name__c = testPRODUCTNAME);      
            insert tAccount;
            return tAccount; 
        }
    }
    

    }

    0 讨论(0)
  • 2021-01-21 08:41

    If you really want to "unit" test, you should test the behavior of your class B AND the behavior of your class A, mocking the call to the class B method.

    That's a tough conversation between mock lovers and others (Martin Fowler I think is not a "mocker").

    Anyway. You should stop thinking about 100% coverage. You should think about:

    • Why am i testing?

    • How am i testing?

    Here, i'd definitely go for 2 tests:

    • One test for the B class into the b class test file to be sure the B method is well implemented, with all the side effects, side values etc.

    • one test for the A class mocking the class B

    What is a mock?

    To stay VERY simple: A mock is a portion of code in your test which is gonna say: when the B class method is called, always return this value: "+++" .

    By doing this, you allow yourself having a maintanable and modulable test suite.

    In java, I love mockito : http://mockito.org/

    Although one of my colleagues is lead maintainer for easymock: http://easymock.org/

    Hope this helps. Ask me if you need further help.

    EDIT SOME EXAMPLE

    With Java and mockito:

    public class aUTest {
    
        protected A a;
    
        @Mock protected B b;
    
        @Before
        public void setUp(){
            MockitoAnnotations.initMocks(this);
            a = new A();
            ReflectionTestUtils.setField(a, "b", b);
        }
    
            @Test
        public void test_A_method_should_not_throw_exception()
                when(b. execute()).thenReturn(true); //just an example of a return value from b. execute()
                Boolean result = a.testHello();
    
            // Assert
            Assert.assertEquals(true, result);
        }
    
    0 讨论(0)
  • 2021-01-21 08:43

    Comments about Java mock libraries aren't very helpful in Salesforce world ;) At my projects we usually aimed for making our own test data in the test method, calling real functionality, checking the results... and whole test framework on Salesforce side is responsible for transaction rollback (so no test data is saved to DB in the end regardless whether the test failed or passed).

    Anyway...

    Masato, your classes do not compile (methods outside class scope, public String hello() without any String returned)... After I fixed it I simply right-clicked the MyClassA -> Force.com -> run tests and got full code coverage without any problems so your issue must lie somewhere else...

    Here's how it looks: http://dl.dropbox.com/u/709568/stackoverflow/masato_code_coverage.png

    I'm trying to think what might have gone wrong... are you sure all classes compile and were saved on server side? Did you put test methods in same classes as functionality or in separate ones (generally I make separate class name with similar name like MyClassATest). If it's a separate class - on which file did you click "run tests"? Last but not least - if you're facing this issue during deployment from sandbox to production, make sure you selected all classes you need in the deployment wizard?

    0 讨论(0)
提交回复
热议问题