public void testKitchenSinkInsert() throws EntityNotFoundException {
Map<String, String> props = new HashMap<String, String>();
props.put("datanucleus.appengine.BigDecimalsEncoding", "String");
switchDatasource(PersistenceManagerFactoryName.originalStorageVersion, props);
KitchenSink ks = KitchenSink.newKitchenSink();
assertNull(ks.key);
makePersistentInTxn(ks, TXN_START_END);
assertNotNull(ks.key);
Entity entity = ds.get(KeyFactory.stringToKey(ks.key));