Package org.hibernate.ogm.datastore.couchdb.utils

Examples of org.hibernate.ogm.datastore.couchdb.utils.CouchDBTestHelper


    EntityKey key = createEntityKey( "user", new String[] { "id", "age" }, new Object[] { "17", 36 } );
    dialect.createTuple( key, emptyTupleContext() );

    dialect.removeTuple( key, emptyTupleContext() );

    assertThat( new CouchDBTestHelper().getNumberOfEntities( datastoreProvider.getDataStore() ) ).isEqualTo( 0 );
  }
View Full Code Here

TOP

Related Classes of org.hibernate.ogm.datastore.couchdb.utils.CouchDBTestHelper

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.