Package org.springframework.expression.spel

Examples of org.springframework.expression.spel.SpelCompilationPerformanceTests$TestClass2$Foo


    // param
    petiteContainer.defineParameter("foo.data", "data");

    // get bean
    Foo foo = (Foo) petiteContainer.getBean("foo");

    assertEquals("ctor null null", foo.result);
    assertEquals("bar", foo.bar.toString());
    assertEquals("data", foo.data);
  }
View Full Code Here


    // param
    petiteContainer.defineParameter("foo.data", "data");

    // get bean
    Foo foo = (Foo) petiteContainer.getBean("foo");

    assertEquals("ctor bar null", foo.result);
    assertEquals("bar", foo.bar.toString());
    assertEquals("data", foo.data);
  }
View Full Code Here

    // param
    petiteContainer.defineParameter("foo.data", "data");

    // get bean
    Foo foo = (Foo) petiteContainer.getBean("foo");

    assertEquals("ctor bar data", foo.result);
    assertEquals("bar", foo.bar.toString());
    assertEquals("data", foo.data);
  }
View Full Code Here

package specialiseReturnType3;
import lib.specialiseReturnType3.Foo;
import java.util.*;
public class Main extends Foo {
  public static void main(String[] args) {
    Foo f = new Main();
    Collection c = f.getColl();
    System.out.println(c);
 
View Full Code Here

package static2;
import lib.static2.Foo;
public class Main {
  public static void main(String[] args) {
    new Foo().foo();
  }
View Full Code Here

    @Test
    public void test_simple_MBean_different_package() throws Exception {
        final String instanceName = "simple.test.instance.2";
        final String objectNameString = "domain:instance=" + instanceName;
        final ObjectName objectName = new ObjectName(objectNameString);
        final TestClass testInstance = new TestClass2(instanceName);

        final MBeanServer server = getStaticMBeanServer();

        // expect MBean to not be registered yet
        assertNotRegistered(server, objectName);
View Full Code Here

        super(testName);
    }

    public void testThis() throws Exception {
        Asserter asserter = new Asserter(JEXL);
        asserter.setVariable("this", new Foo());
       
        asserter.assertExpression("this.get('abc')", "Repeat : abc");
       
        try {
            asserter.assertExpression("this.count", "Wrong Value");
View Full Code Here

    public void testVariable() throws Exception {
        JexlEngine jexl = new JexlEngine();
        jexl.setSilent(true);
        Asserter asserter = new Asserter(jexl);
        asserter.setVariable("foo", new Foo());
        asserter.setVariable("person", "James");

        asserter.assertExpression("person", "James");
        asserter.assertExpression("size(person)", new Integer(5));
       
View Full Code Here

        super(testName);
    }

    public void testThis() throws Exception {
        Asserter asserter = new Asserter(JEXL);
        asserter.setVariable("this", new Foo());
       
        asserter.assertExpression("this.get('abc')", "Repeat : abc");
       
        try {
            asserter.assertExpression("this.count", "Wrong Value");
View Full Code Here

    public void testVariable() throws Exception {
        JexlEngine jexl = new JexlEngine();
        jexl.setSilent(true);
        Asserter asserter = new Asserter(jexl);
        asserter.setVariable("foo", new Foo());
        asserter.setVariable("person", "James");

        asserter.assertExpression("person", "James");
        asserter.assertExpression("size(person)", new Integer(5));
       
View Full Code Here

TOP

Related Classes of org.springframework.expression.spel.SpelCompilationPerformanceTests$TestClass2$Foo

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.