Package net.emaze.dysfunctional.dispatching.delegates

Examples of net.emaze.dysfunctional.dispatching.delegates.Delegate


        new LongTryParser(Character.MIN_RADIX - 1);
    }

    @Test(expected = ClassCastException.class)
    public void passingNonStringToErasureYieldsException() {
        Delegate d = new LongTryParser(10);
        d.perform(new Object());
    }       
View Full Code Here


        new ShortParser(10).perform(null);
    }
   
    @Test(expected = ClassCastException.class)
    public void passingNonStringToErasureYieldsException() {
        Delegate d = new ShortParser(10);
        d.perform(new Object());
    }       
View Full Code Here

TOP

Related Classes of net.emaze.dysfunctional.dispatching.delegates.Delegate

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.