Datasets:
apcl
/

Modalities:
Text
Formats:
webdataset
Libraries:
Datasets
WebDataset
mcmillco's picture
init
e789b06
raw
history blame
500 Bytes
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>