Package Methods.Lines

Examples of Methods.Lines.LineComments


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


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

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

TOP

Related Classes of Methods.Lines.LineComments

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.