/**
* Test {@link UnitLocationFolder}.
*/
@Test
public void testUnitLocationFormatBean(){
final UnitLocationFolder locationFolder = new UnitLocationFolder();
locationFolder.setId(1L);
locationFolder.setName("folder");
locationFolder.setType("type");
locationFolder.setUnitUserBean(new UserAccountBean());
assertNotNull(locationFolder.getId());
assertNotNull(locationFolder.getName());
assertNotNull(locationFolder.getUnitUserBean());
assertNotNull(locationFolder.getType());
}