Back to project page mobile-connector-sdk-android.
The source code is released under:
Apache License
If you think the Android project mobile-connector-sdk-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.silverpop.engage.config; //from w w w. ja v a 2 s. co m import android.test.AndroidTestCase; /** * Created by jeremydyer on 6/12/14. */ public class EngageConfigManagerTests extends AndroidTestCase { public void testexpireLocalEventsAfterNumDays() { EngageConfigManager man = EngageConfigManager.get(getContext()); int value = man.expireLocalEventsAfterNumDays(); assertTrue(value > 0); } public void testubfEventCacheSize() { EngageConfigManager man = EngageConfigManager.get(getContext()); int value = man.ubfEventCacheSize(); assertTrue(value > 0); } }