Added some printIf comments to ActionInfluenceLifecycle

This commit is contained in:
Dave
2015-01-06 23:54:48 +02:00
parent 88ceee62ac
commit e43f696b9f

View File

@@ -597,6 +597,7 @@ public class NoCoreTest {
// Create outgoing action // Create outgoing action
NoActionTest action = new NoActionTest(address, CHANGES.next()); NoActionTest action = new NoActionTest(address, CHANGES.next());
user.addAction(action); user.addAction(action);
printIf("Action added to second user.");
// Save-confirm user // Save-confirm user
try { try {
@@ -608,9 +609,10 @@ public class NoCoreTest {
NoCore.shred(secondUserCookie); NoCore.shred(secondUserCookie);
return false; return false;
} }
printIf("Logged out of second user.");
// Log in as first user, should get changes // Log in as first user, should get changes
printIf("Logging into first user again.");
try { try {
cookie = NoCore.login(copy(data), PASSWORD.toCharArray()); cookie = NoCore.login(copy(data), PASSWORD.toCharArray());
} catch (Exception e) { } catch (Exception e) {