Package org.junithelper.core.filter.impl

Examples of org.junithelper.core.filter.impl.TrimAnnotationFilter


    @Test
    public void addFilter_A$TrimFilterArray_1() throws Exception {
        TrimFilterManager target = new TrimFilterManager();
        // given
        TrimFilter[] filters = new TrimFilter[] { new TrimAnnotationFilter() };
        // when
        target.addFilter(filters);
        // then
        assertEquals(1, target.getFilters().size());
    }
View Full Code Here


    @Test
    public void addFilter_A$TrimFilterArray_2() throws Exception {
        TrimFilterManager target = new TrimFilterManager();
        // given
        TrimFilter[] filters = new TrimFilter[] { new TrimAnnotationFilter(), new TrimCommentFilter() };
        // when
        target.addFilter(filters);
        // then
        assertEquals(2, target.getFilters().size());
    }
View Full Code Here

TOP

Related Classes of org.junithelper.core.filter.impl.TrimAnnotationFilter

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.