Package org.mockserver.model

Examples of org.mockserver.model.Delay


public class DelayDTOTest {

    @Test
    public void shouldReturnValueSetInConstructor() {
        // when
        DelayDTO delay = new DelayDTO(new Delay(TimeUnit.DAYS, 5));

        // then
        assertThat(delay.getTimeUnit(), is(TimeUnit.DAYS));
        assertThat(delay.getValue(), is(5l));
    }
View Full Code Here


    public DelayDTO() {
    }

    public Delay buildObject() {
        return new Delay(timeUnit, value);
    }
View Full Code Here

TOP

Related Classes of org.mockserver.model.Delay

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.