ICU-11464 TestFmwk should log closing brace lines for empty tests.

Review URL: https://codereview.appspot.com/191480043

X-SVN-Rev: 36927
This commit is contained in:
Fredrik Roubert 2015-01-07 18:39:29 +00:00
parent e65a679a26
commit 0f41ec3319

View File

@ -1,6 +1,6 @@
/*
*******************************************************************************
* Copyright (C) 1996-2014, International Business Machines Corporation and *
* Copyright (C) 1996-2015, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
@ -1652,6 +1652,11 @@ public class TestFmwk extends AbstractTestLog {
int testDelta = testCount - stack.tc;
if (testDelta == 0) {
if (stack.included) {
stack.flush();
indent(indentLevel);
log.println("} (0s) Empty");
}
return;
}