jdk/test/javax/sql/testng/test/rowset/BaseRowSetTests.java
changeset 27776 b2ddbbc58706
parent 27490 271c130f59b7
child 28558 85050a596713
equal deleted inserted replaced
27775:4ee8b208017c 27776:b2ddbbc58706
   184         String dsname = "";
   184         String dsname = "";
   185         brs.setDataSourceName(dsname);
   185         brs.setDataSourceName(dsname);
   186     }
   186     }
   187 
   187 
   188     /*
   188     /*
   189      * Validate that getEscapeProcessing() returns false by default
   189      * Validate that getEscapeProcessing() returns true by default
   190      */
   190      */
   191     @Test
   191     @Test
   192     public void test08() throws Exception {
   192     public void test08() throws Exception {
   193         assertFalse(brs.getEscapeProcessing());
   193         assertTrue(brs.getEscapeProcessing());
   194     }
   194     }
   195 
   195 
   196     /*
   196     /*
   197      * Validate that getEscapeProcessing() returns value set by
   197      * Validate that getEscapeProcessing() returns value set by
   198      * setEscapeProcessing()
   198      * setEscapeProcessing()