Package booton.soeur

Examples of booton.soeur.Scriptable


        });
    }

    @Test
    public void DoublePrimitiveAndWrapper() throws Exception {
        test(new Scriptable() {

            boolean act() {
                assert Double.class != double.class;
                return Double.class == double.class;
            }
View Full Code Here


        });
    }

    @Test
    public void ShortPrimitive() throws Exception {
        test(new Scriptable() {

            Class act() {
                return short.class;
            }
        });
View Full Code Here

        });
    }

    @Test
    public void ShortWrapper() throws Exception {
        test(new Scriptable() {

            Class act() {
                return Short.class;
            }
        });
View Full Code Here

        });
    }

    @Test
    public void ShortPrimitiveAndWrapper() throws Exception {
        test(new Scriptable() {

            boolean act() {
                assert Short.class != short.class;
                return Short.class == short.class;
            }
View Full Code Here

        });
    }

    @Test
    public void BytePrimitive() throws Exception {
        test(new Scriptable() {

            Class act() {
                return byte.class;
            }
        });
View Full Code Here

        });
    }

    @Test
    public void ByteWrapper() throws Exception {
        test(new Scriptable() {

            Class act() {
                return Byte.class;
            }
        });
View Full Code Here

        });
    }

    @Test
    public void BytePrimitiveAndWrapper() throws Exception {
        test(new Scriptable() {

            boolean act() {
                assert Byte.class != byte.class;
                return Byte.class == byte.class;
            }
View Full Code Here

        });
    }

    @Test
    public void BooleanPrimitive() throws Exception {
        test(new Scriptable() {

            Class act() {
                return boolean.class;
            }
        });
View Full Code Here

        });
    }

    @Test
    public void BooleanWrapper() throws Exception {
        test(new Scriptable() {

            Class act() {
                return Boolean.class;
            }
        });
View Full Code Here

        });
    }

    @Test
    public void BooleanPrimitiveAndWrapper() throws Exception {
        test(new Scriptable() {

            boolean act() {
                assert Boolean.class != boolean.class;
                return Boolean.class == boolean.class;
            }
View Full Code Here

TOP

Related Classes of booton.soeur.Scriptable

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.