Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestMutation (0.17 sec)

  1. src/test/java/jcifs/tests/TestMutation.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.tests;
    
    
    import java.util.Map;
    
    
    /**
     * @author mbechler
     *
     */
    public interface TestMutation {
    
        /**
         * @param cfg
         * @return mutated configuration
         */
        public Map<String, String> mutate ( Map<String, String> cfg );
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 1K bytes
    - Viewed (0)
  2. src/test/java/jcifs/tests/AllTests.java

    public class AllTests {
    
        private static final Logger log = LoggerFactory.getLogger(AllTests.class);
    
        private static Map<String, TestMutation> MUTATIONS = new HashMap<>();
    
        private static Map<String, CIFSContext> CONTEXT_CACHE = new HashMap<>();
    
        static {
            MUTATIONS.put("noSigning", new TestMutation() {
    
                @Override
                public Map<String, String> mutate ( Map<String, String> cfg ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 14.4K bytes
    - Viewed (0)
Back to top