added failing ClientCacheTest
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package org.springframework.data.gemfire.client;
|
||||
|
||||
import org.junit.Test;
|
||||
import org.junit.runner.RunWith;
|
||||
import org.springframework.test.context.ContextConfiguration;
|
||||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
||||
|
||||
@RunWith(SpringJUnit4ClassRunner.class)
|
||||
@ContextConfiguration("client-cache.xml")
|
||||
public class ClientCacheTest {
|
||||
@Test
|
||||
public void test() {
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<beans xmlns="http://www.springframework.org/schema/beans"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xmlns:gfe="http://www.springframework.org/schema/gemfire"
|
||||
xsi:schemaLocation="http://www.springframework.org/schema/gemfire http://www.springframework.org/schema/gemfire/spring-gemfire-1.0.xsd
|
||||
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
|
||||
|
||||
<bean class="org.springframework.data.gemfire.client.ClientCacheFactoryBean">
|
||||
<property name="pool" ref="pool"/>
|
||||
</bean>
|
||||
|
||||
<gfe:pool id="pool">
|
||||
<gfe:locator host="localhost" port="12345"/>
|
||||
</gfe:pool>
|
||||
</beans>
|
||||
Reference in New Issue
Block a user