Back to project page Butler.
The source code is released under:
Apache License
If you think the Android project Butler 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.bingzer.android; // w w w. j av a 2 s.com import android.test.AndroidTestCase; import com.bingzer.android.Constants; public class ConstantsTest extends AndroidTestCase { public void test_allConstants(){ assertEquals("", Constants.Empty); assertEquals(".", Constants.Dot); assertEquals(",", Constants.Comma); assertEquals(":", Constants.Colon); assertEquals(";", Constants.SemiColon); } }