To get this branch, use:
bzr branch
http://gegoxaren.bato24.eu/bzr/magstudentportal/trunk
1
2
3
4
5
6
7
8
9
10
11
12
|
import org.junit.*;
import common.Utils;
public class TestHash {
@Test
public void test1 () {
System.out.println(Utils.hash_func("Hello World"));
}
}
|