1 2 17 18 package org.apache.poi.ddf; 19 20 import junit.framework.TestCase; 21 22 public class TestEscherBoolProperty extends TestCase 23 { 24 public void testToString() throws Exception  25 { 26 EscherBoolProperty p = new EscherBoolProperty((short)1, 1); 27 assertEquals("propNum: 1, propName: unknown, complex: false, blipId: false, value: 1 (0x00000001)", p.toString()); 28 } 29 30 } 31 | Popular Tags |