Package Methods.Comments

Examples of Methods.Comments.BlockComments


    }
   
    @Test
    public void NumberBlockComments() throws FileNotFoundException, IOException{
        ReaderFile reader = new ReaderFile("src/Class/Classes.java");
        BlockComments numlinescomments = new BlockComments(reader);
        assertEquals(numlinescomments.getCount(), 0);
    }
View Full Code Here


    }
   
    @Test
    public void NumberBlockComments() throws FileNotFoundException, IOException{
        ReaderFile reader = new ReaderFile("src/Class/Classes.java");
        BlockComments numlinescomments = new BlockComments(reader);
        assertEquals(numlinescomments.getCount(), 0);
    }
View Full Code Here

    }
   
    @Test
    public void NumberBlockComments2() throws FileNotFoundException, IOException{
        ReaderFile reader = new ReaderFile("src/Principal/Parser.java");
        BlockComments numlinescomments = new BlockComments(reader);
        assertEquals(numlinescomments.getCount(), 2);
    }
View Full Code Here

TOP

Related Classes of Methods.Comments.BlockComments

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.