Package com.prancingdonkey.model.json

Examples of com.prancingdonkey.model.json.Provider


    @Test
    public void testRegularJson() throws Exception
    {
        MuleClient muleClient = new MuleClient(muleContext);

        Provider payload = new Provider();
        payload.setName("test name");

        MuleMessage result = muleClient.send("vm://json-marshalling.in", payload, null);
        assertThat(result, is(notNullValue()));
        assertThat(result.getPayload(), is(notNullValue()));
        assertThat(result.getPayload(), is(instanceOf(Provider.class)));
View Full Code Here

TOP

Related Classes of com.prancingdonkey.model.json.Provider

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.