Package fr.soleil.lib.flyscan.model.parsing.configuration.trajectory

Examples of fr.soleil.lib.flyscan.model.parsing.configuration.trajectory.IntervalStepByStepTrajectory


        assertNotNull(trajectory);

        assertEquals("[{40.0,50.0,5}]", trajectory.getStringTrajectory());

        IntervalStepByStepTrajectory isbsTrajectory = ((IntervalStepByStepTrajectory) trajectory);

        assertEquals(1, isbsTrajectory.getIntervals().size());

        assertEquals(40.0, isbsTrajectory.getIntervals().get(0).getFrom());

        assertEquals(50.0, isbsTrajectory.getIntervals().get(0).getTo());

        assertEquals(5, isbsTrajectory.getIntervals().get(0).getNbAcq());

    }
View Full Code Here

TOP

Related Classes of fr.soleil.lib.flyscan.model.parsing.configuration.trajectory.IntervalStepByStepTrajectory

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.