/magstudentportal/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/magstudentportal/trunk
18 by Gustav Hartvigsson
* Added vim modelines
1
/* c-basic-offset: 2; tab-width: 2; indent-tabs-mode: nil
2
 * vi: set shiftwidth=2 tabstop=2 expandtab:
3
 * :indentSize=2:tabSize=2:noTabs=true:
4
 */
5
15.2.2 by Gustav Hartvigsson
* Added JUnit and javax.faces dependancies to the pom.xml.
6
import org.junit.*;
7
8
import common.Utils;
9
10
public class TestHash {
11
  @Test
12
  public void test1 () {
13
    System.out.println(Utils.hash_func("Hello World"));
14
  }
15
16
}