Add unit test to show that the callback method is called.

This commit is contained in:
Richard Jones 2015-10-19 22:07:00 +01:00
parent 83c2fbdcd3
commit 21a4d7b4c9

View File

@ -9,7 +9,7 @@ public class SimpleTask extends Task {
@Override
public void execute() {
System.out.println("Perform some important activity.");
System.out.println("Perform some important activity and after call the callback method.");
}
}