X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=org.argeo.slc.api%2Fsrc%2Forg%2Fargeo%2Fslc%2Ftest%2Fcontext%2FContextAware.java;fp=org.argeo.slc.api%2Fsrc%2Forg%2Fargeo%2Fslc%2Ftest%2Fcontext%2FContextAware.java;h=0000000000000000000000000000000000000000;hb=09c9e5093fe1353aaac344ac8a8caf2e1dcc0778;hp=d2cd86f742a3f5071d63757e209e49c857fcd191;hpb=8ff996a3380166be2ae9cf0ef0fa22c58e11746a;p=gpl%2Fargeo-slc.git diff --git a/org.argeo.slc.api/src/org/argeo/slc/test/context/ContextAware.java b/org.argeo.slc.api/src/org/argeo/slc/test/context/ContextAware.java deleted file mode 100644 index d2cd86f74..000000000 --- a/org.argeo.slc.api/src/org/argeo/slc/test/context/ContextAware.java +++ /dev/null @@ -1,22 +0,0 @@ -package org.argeo.slc.test.context; - -import java.util.Map; - -/** Access to an SLC test context that is, maps of reached and expected values. */ -public interface ContextAware { - public final static String DEFAULT_SKIP_FLAG = "!"; - public final static String DEFAULT_ANY_FLAG = "*"; - - /** Retrieves reached values. */ - public Map getValues(); - - /** Set reached values. */ - public void setValues(Map values); - - /** Retrieves expected values. */ - public Map getExpectedValues(); - - public String getContextSkipFlag(); - - public String getContextAnyFlag(); -}