Checking core structure...
compile_project:10: no matches found: *.in
rm -f sonet-core.jar `find . -name \*.class`
(cd src; javac -encoding UTF-8 -cp /usr/share/java/sonet-core-support.jar `find . -name \*.java`)
./sonet/SonetTest.java:9: package junit.framework does not exist
import junit.framework.Assert;
                      ^
./sonet/SonetTest.java:10: package junit.framework does not exist
import junit.framework.Test;
                      ^
./sonet/SonetTest.java:11: package junit.framework does not exist
import junit.framework.TestCase;
                      ^
./sonet/SonetTest.java:12: package junit.framework does not exist
import junit.framework.TestSuite;
                      ^
./sonet/SonetTest.java:18: cannot find symbol
symbol: class TestCase
public class SonetTest extends TestCase {
                               ^
./sonet/SonetTest.java:39: cannot find symbol
symbol  : class Test
location: class sonet.SonetTest
	public static Test suite() {
	              ^
./sonet/SonetTest.java:33: cannot find symbol
symbol  : variable Assert
location: class sonet.SonetTest
		Assert.assertEquals(_testnet.getAgent(0), new Person("Root", " ", " "));
		^
./sonet/SonetTest.java:34: cannot find symbol
symbol  : variable Assert
location: class sonet.SonetTest
		Assert.assertEquals(_testnet.getAgent(1), new Person("God", "god@gmail.com", "912345678"));
		^
./sonet/SonetTest.java:35: cannot find symbol
symbol  : variable Assert
location: class sonet.SonetTest
		Assert.assertEquals(_testnet.getAgent(2), new Organization("CIA", "cia@cia.com", "00000"));
		^
./sonet/SonetTest.java:36: cannot find symbol
symbol  : variable Assert
location: class sonet.SonetTest
		Assert.assertEquals(_testnet.getAgent(3), new Person("Normal Person", "person@gmail.com", "919293941"));
		^
./sonet/SonetTest.java:40: cannot find symbol
symbol  : class TestSuite
location: class sonet.SonetTest
		TestSuite suite = new TestSuite();
		^
./sonet/SonetTest.java:40: cannot find symbol
symbol  : class TestSuite
location: class sonet.SonetTest
		TestSuite suite = new TestSuite();
		                      ^
12 errors
make: *** [all] Error 1