From 199aebbd9e17137c68b3bc335e4aac7ea0a728b8 Mon Sep 17 00:00:00 2001 From: Keith Donald Date: Tue, 22 Apr 2008 19:01:51 +0000 Subject: [PATCH] extract tests --- .../webflow/core/collection/LocalAttributeMapTests.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/spring-webflow/src/test/java/org/springframework/webflow/core/collection/LocalAttributeMapTests.java b/spring-webflow/src/test/java/org/springframework/webflow/core/collection/LocalAttributeMapTests.java index 4f678e4e..b3795d34 100644 --- a/spring-webflow/src/test/java/org/springframework/webflow/core/collection/LocalAttributeMapTests.java +++ b/spring-webflow/src/test/java/org/springframework/webflow/core/collection/LocalAttributeMapTests.java @@ -324,4 +324,9 @@ public class LocalAttributeMapTests extends TestCase { assertEquals(map, map2); } + public void testExtract() { + assertEquals("A string", attributeMap.extract("string")); + assertFalse(attributeMap.contains("string")); + } + } \ No newline at end of file