* type return equal objects.
*
* @throws RepositoryException
*/
public void testCreateBooleanValueFromString() throws RepositoryException {
QValue v = factory.create(Boolean.TRUE.toString(), PropertyType.BOOLEAN);
assertEquals("Creating boolean type QValue from boolean or String must be equal.",
factory.create(true), v);
v = factory.create(Boolean.FALSE.toString(), PropertyType.BOOLEAN);
assertEquals("Creating boolean type QValue from boolean or String must be equal.",