This should bring code coverage to 100% for MutableBoolean
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@754611 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f4a99655f0
commit
9aaab6cabb
|
@ -107,6 +107,7 @@ public class MutableBooleanTest extends TestCase {
|
|||
public void testGetSet() {
|
||||
final MutableBoolean mutBool = new MutableBoolean(false);
|
||||
assertEquals(false, new MutableBoolean().booleanValue());
|
||||
assertEquals(Boolean.FALSE, new MutableBoolean().getValue());
|
||||
|
||||
mutBool.setValue(Boolean.TRUE);
|
||||
assertEquals(true, mutBool.booleanValue());
|
||||
|
|
Loading…
Reference in New Issue