From 25fd956981eec7eecec6c141d8359901189c2f50 Mon Sep 17 00:00:00 2001 From: costin Date: Thu, 26 Aug 2010 22:17:42 +0300 Subject: [PATCH] + add basic replicated ns test SGF-10 SGF-12 --- .../config/ReplicatedRegionNamespaceTest.java | 42 +++++++++++++++++++ .../data/gemfire/config/replicated-ns.xml | 17 ++++++++ 2 files changed, 59 insertions(+) create mode 100644 src/test/java/org/springframework/data/gemfire/config/ReplicatedRegionNamespaceTest.java create mode 100644 src/test/resources/org/springframework/data/gemfire/config/replicated-ns.xml diff --git a/src/test/java/org/springframework/data/gemfire/config/ReplicatedRegionNamespaceTest.java b/src/test/java/org/springframework/data/gemfire/config/ReplicatedRegionNamespaceTest.java new file mode 100644 index 00000000..741e6239 --- /dev/null +++ b/src/test/java/org/springframework/data/gemfire/config/ReplicatedRegionNamespaceTest.java @@ -0,0 +1,42 @@ +/* + * Copyright 2010 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.springframework.data.gemfire.config; + +import static org.junit.Assert.assertTrue; + +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.ApplicationContext; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; + +/** + * @author Costin Leau + */ +@RunWith(SpringJUnit4ClassRunner.class) +@ContextConfiguration("replicated-ns.xml") +public class ReplicatedRegionNamespaceTest { + + @Autowired + private ApplicationContext context; + + @Test + public void testBasicCache() throws Exception { + assertTrue(context.containsBean("simple")); + } +} diff --git a/src/test/resources/org/springframework/data/gemfire/config/replicated-ns.xml b/src/test/resources/org/springframework/data/gemfire/config/replicated-ns.xml new file mode 100644 index 00000000..3c55598f --- /dev/null +++ b/src/test/resources/org/springframework/data/gemfire/config/replicated-ns.xml @@ -0,0 +1,17 @@ + + + + + + + + + + \ No newline at end of file