Package Test.Lines

Source Code of Test.Lines.NumberLinesEffectives

package Test.Lines;

import Methods.Lines.LinesEffectives;
import Package.Files.ReaderFile;
import java.io.FileNotFoundException;
import java.io.IOException;
import static org.junit.Assert.*;
import org.junit.Test;

public class NumberLinesEffectives {
   
    public NumberLinesEffectives() {
    }
   
    @Test
    public void NumberLinesEffectives() throws FileNotFoundException, IOException{
        ReaderFile reader = new ReaderFile("src/Class/Classes.java");
        LinesEffectives numlineseffectives = new LinesEffectives(reader);
        assertEquals(numlineseffectives.getCount(), 61);
    }
}
TOP

Related Classes of Test.Lines.NumberLinesEffectives

TOP
Copyright © 2018 www.massapi.com. 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.