that's an old version of JUnit, probably 3.8.
i'd recommend starting with JUnit 4.4.
jre? you need the jdk, right? do you understand the difference?
using JUnit 4.4, your test would look like this:
package org.NewProject;
public class PersonTest extends TestCase
{
@Test
public void testPerson() {
fail("Not yet implemented");
}
@Test
public void testSetMaximumBooks() {
fail("Not yet implemented");
}
@Test
public void testSetName() {
fail("Not yet implemented");
}
}
there are some static imports that you'll have to add, too.
this doesn't answer your question, but your responses will tell a lot about you.
i find that pasting my error messages into a google search helps a lot:
http://www.google.com/search?hl=en&client=firefox-a&rls=org.mozilla%3Aen-US%3Aofficial&hs=Bth&q=JUnit+%22No+socket+available%22&btnG=Search
%