Changeset 4652
- Timestamp:
- 2011-02-08 09:46:25 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/cr/repository/impl/src/test/java/org/lilyproject/repository/impl/test/AbstractBlobStoreTest.java
r4651 r4652 883 883 884 884 try { 885 repository.getInputStream(record.getId(), record.getVersion(), new QName("test", "nonExistingFieldType"), null, null); 885 repository.getInputStream(record.getId(), record.getVersion(), new QName("test", "nonExistingFieldType"), 886 null, null); 886 887 fail("Expected exception"); 887 888 } catch (FieldTypeNotFoundException e) { … … 893 894 fail("Expected exception"); 894 895 } catch (IllegalArgumentException e) { 896 // ok 897 } 898 899 try { 900 repository.getInputStream(repoSetup.getIdGenerator().fromString("USER.nonexistingrecord"), null, 901 absentField.getName(), null, null); 902 fail("Expected exception"); 903 } catch (RecordNotFoundException e) { 895 904 // ok 896 905 }
Note: See TracChangeset
for help on using the changeset viewer.