Package com.netflix.zeno.testpojos

Examples of com.netflix.zeno.testpojos.TypeA


            assertArraysContainSameElements(expectedTo, actualTo);
        }
    }

    private void addHistoricalState(Integer one, Integer two, Integer three, Integer four) throws IOException {
        if(one != null)   stateEngine.add("TypeA", new TypeA(1, one.intValue()));
        if(two != null)   stateEngine.add("TypeA", new TypeA(2, two.intValue()));
        if(three != null) stateEngine.add("TypeA", new TypeA(3, three.intValue()));
        if(four != nullstateEngine.add("TypeA", new TypeA(4, four.intValue()));

        stateEngine.setLatestVersion(String.valueOf(++versionCounter));

        roundTripObjects(stateEngine);
        diffHistory.addState();
View Full Code Here


        Assert.assertSame(deserializedD2.getTypeA(), deserializedD3.getTypeA());
    }

    private TypeD typeD(int dVal, int aVal) {
        return new TypeD(dVal, new TypeA(aVal, aVal));
    }
View Full Code Here

TOP

Related Classes of com.netflix.zeno.testpojos.TypeA

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.