-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKatalogBSP.xml
More file actions
87 lines (85 loc) · 1.56 KB
/
KatalogBSP.xml
File metadata and controls
87 lines (85 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE excercises SYSTEM "excercises.dtd">
<excercises>
<exercise>
<description>Hard Hello World^^
</description>
<classes>
<class name="HelloLSG">
public class HelloLSG{
public static void main(String[] args){
System.out.print(15);}}
</class>
</classes>
<tests>
<test name="HelloTest">import static org.junit.Assert.*;
import org.junit.Test;
public class HelloTest {
@Test
public void testSomething() {
}
}</test>
</tests>
<config>
<babysteps value="bla" seconds="3"/>
<timetracking value="true"/>
</config>
</exercise>
<exercise>
<description>
Simple Hello World
</description>
<classes>
<class name="hello">
public class hello {
public static void main(String[] args){
System.out.println("Hello World");
}
}
</class>
</classes>
<tests>
<test name="HelloTest">
import static org.junit.Assert.*;
import org.junit.Test;
public class RomanNumbersTest {
@Test
public void testSomething() {
}
}
</test>
</tests>
<config>
<babysteps value="true" seconds="250" />
<timetracking value="false" />
</config>
</exercise>
<exercise>
<description>Funktioniert</description>
<classes>
<class name="Numbers">
public class Numbers{
public static int convert(int i){
return 0;
}
}</class>
</classes>
<tests>
<test name="NumbersTest">
import static org.junit.Assert.*;
import org.junit.Test;
public class NumbersTest{
@Test
public void Test1(){
int i=1;
assertEquals(1,Numbers.convert(i));
}
}
</test>
</tests>
<config>
<babysteps value="true" seconds="70" />
<timetracking value="true" />
</config>
</exercise>
</excercises>