File size: 500 Bytes
e789b06 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
TDAT: public void testDeleteBlobDataType() { // 1. insert init data insertBlobDataType(); // 2. select a blobDataType data BlobDataType blobDataType = (BlobDataType) session.get( BlobDataType.class, new Integer(4491)); // 3. remove data session.delete(blobDataType); // 4. check if deletion is successful blobDataType = (BlobDataType) session.get(BlobDataType.class, new Integer(4491)); assertNull(blobDataType); } COM: <s> flow 3 positive case blob type entity </s> |