File tree Expand file tree Collapse file tree 2 files changed +36
-1
lines changed
src/fi/helsinki/cs/tmc/actions
test/unit/src/fi/helsinki/cs/tmc/actions Expand file tree Collapse file tree 2 files changed +36
-1
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,6 @@ public void onSuccess(final List<Course> courses) {
71
71
Course currentCourse = CourseListUtils .getCourseByName (courses , courseDb .getCurrentCourseName ());
72
72
if (currentCourse != null ) {
73
73
try {
74
- System .out .println ("DETAILS URL: " + currentCourse .getDetailsUrl ());
75
74
ListenableFuture <Course > courseFuture = tmcCore .getCourse (tmcSettings , currentCourse .getDetailsUrl ());
76
75
Futures .addCallback (courseFuture , new FutureCallback <Course >() {
77
76
@ Override
Original file line number Diff line number Diff line change
1
+ package fi .helsinki .cs .tmc .actions ;
2
+
3
+ import org .junit .Test ;
4
+ import static org .junit .Assert .*;
5
+
6
+ /**
7
+ *
8
+ * @author samutamm
9
+ */
10
+ public class RefreshCoursesActionTest {
11
+
12
+ public RefreshCoursesActionTest () {
13
+ }
14
+
15
+ /**
16
+ * Test of addDefaultListener method, of class RefreshCoursesAction.
17
+ */
18
+ @ Test
19
+ public void testAddDefaultListener () {
20
+ }
21
+
22
+ /**
23
+ * Test of addListener method, of class RefreshCoursesAction.
24
+ */
25
+ @ Test
26
+ public void testAddListener () {
27
+ }
28
+
29
+ /**
30
+ * Test of run method, of class RefreshCoursesAction.
31
+ */
32
+ @ Test
33
+ public void testRun () {
34
+ }
35
+
36
+ }
You can’t perform that action at this time.
0 commit comments