Back to project page saltedge-android.
The source code is released under:
MIT License
If you think the Android project saltedge-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.saltedge.sdk.params; //from w w w .j a v a 2 s . c om import android.test.suitebuilder.annotation.SmallTest; import com.saltedge.sdk.utils.SEDateTools; import junit.framework.TestCase; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Locale; /** * Created by AGalkin * On 1/28/15. */ public class SECreateCustomerParamsTest extends TestCase { @SmallTest public void testCreateCustomerToJson() throws Exception { SECreateCustomerParams params = new SECreateCustomerParams("customerId"); assertEquals("{\"data\":{\"identifier\":\"customerId\"}}", params.toJson().toString()); } }