task4/solution06/src/org/apidesign/apifest08/currency/Assert.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Sat, 18 Oct 2008 08:40:32 +0200
changeset 74 c2585d97e1e3
parent 45 251d0ed461fb
permissions -rw-r--r--
We need to remove XML files describing the result of test run in case of successful build (e.g. there was a test failure) as that prevents Hudson from claiming the build is unstable.
japod@6
     1
package org.apidesign.apifest08.currency;
japod@6
     2
japod@21
     3
public final class Assert {
japod@6
     4
	static void notNull(Object value, String argumentName) {
japod@6
     5
		if(value == null) {
japod@6
     6
			throw new IllegalArgumentException("The argument '" + argumentName + "' connot not be null");
japod@6
     7
		}
japod@6
     8
	}
japod@6
     9
}
japod@21
    10
japod@21
    11