资 源 简 介
# Code has new hosting #
Sorry, changed code hosting to sourceforge. See more:
http://www.foxjunior.eu/tiny-web-server/
http://www.foxjunior.eu/java-image-utils/
http://www.foxjunior.eu/java-formatters/
http://www.foxjunior.eu/java-assertion-e/
http://www.foxjunior.eu/java-reflection-e/
Years of programming I gathered alot of common classes. So, giving those to public use.
## Assertion ##
String based object value assertion. Supports primitives, objects, maps, arrays. Depends on reflection
Example:
```
final HashMap vals = new HashMap();
vals.put("f", "g");
vals.put("h", "1");
final ArrayList ars = new ArrayList();
ars.add("a");
ars.add("b");
o = new Object() {
public final String a = "b";
public final String b = "c";
public final String c = "d";
public final int d = 1;
public final int e = 11;
public final int f = 21;
boolean yes = true;
boolean no=false;
public final HashMap g = vals;
public f