Back to project page Learn-From-Me.
The source code is released under:
Apache License
If you think the Android project Learn-From-Me 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.overnightApps.myapplication.app.util; /* w ww.j av a 2s.c o m*/ import junit.framework.Assert; /** * Created by andre on 4/17/14. */ public class MyAssert extends Assert { public static void assertShouldNotReachHere(String message){ String MESSAGE = "Error! should not have reached here. Bug in code. "; throw new AssertionError(MESSAGE+message); } public static void assertShouldNotReachHere(){ assertShouldNotReachHere(""); } }