Package ru.aristar.jnuget.sources.push

Examples of ru.aristar.jnuget.sources.push.RemoveOldVersionTrigger


     */
    @Test
    public void testGetObjectProperties() {
        //GIVEN
        StorageOptionsController controller = new StorageOptionsController();
        RemoveOldVersionTrigger trigger = new RemoveOldVersionTrigger();
        final int packageCount = 100500;
        trigger.setMaxPackageCount(packageCount);
        //WHEN
        ArrayList<Property> result = controller.getObjectProperties(trigger);
        //THEN
        assertThat(result.size(), is(equalTo(1)));
        assertThat(result.get(0).getName(), is(equalTo("maxPackageCount")));
View Full Code Here

TOP

Related Classes of ru.aristar.jnuget.sources.push.RemoveOldVersionTrigger

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.