Back to project page coursera-android-pos.
The source code is released under:
MIT License
If you think the Android project coursera-android-pos 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 edu.vuum.mocca; /* w w w .j av a 2 s . c o m*/ import org.junit.runner.RunWith; import org.junit.runners.Suite; import org.junit.runners.Suite.SuiteClasses; @RunWith(Suite.class) @SuiteClasses({ SimpleAtomicLongMultithreadedTest.class, SimpleAtomicLongSingleThreadedTest.class }) /** * @class SimpleAtomicLongTest * * @brief Entry point for running all the regression tests for the * SimpleAtomicLong implementation. */ public class SimpleAtomicLongTests { }