Package Test.Method

Source Code of Test.Method.NumberMethods

package Test.Method;

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

public class NumberMethods {
   
    public NumberMethods() {
    }
   
    @Test
    public void NumberMethods() throws FileNotFoundException, IOException{
        ReaderFile reader = new ReaderFile("src/Class/Classes.java");
        Methods nummethods = new Methods(reader);
        assertEquals(nummethods.getCount(), 11);
    }
}
TOP

Related Classes of Test.Method.NumberMethods

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.