Package de.berndsteindorff.junittca.model

Examples of de.berndsteindorff.junittca.model.FileClassLoader2


   * definiton for name:..."
   */
  @Test
  public void loadClassTwice() {
    ClassFile cf = null;
    FileClassLoader2 fcl = new FileClassLoader2(CLASSPATH);
    cf = fcl.findClass(new File(PATH_DUMMYTEST));

    assertEquals(NAME_DUMMYTEST, cf.getClassName());

    fcl = new FileClassLoader2(CLASSPATH); // to initialize a new
    // ClassLoader is very important
    cf = fcl.findClass(new File(PATH_DUMMYTEST));
    assertEquals(NAME_DUMMYTEST, cf.getClassName());
  }
View Full Code Here


  @Test
  public void loadClassFromExtClasspathAndRunTest()
      throws ClassNotFoundException {
    logger.info("loadClassFromExtClasspathAndRunTest");
    ClassFile cf = null;
    FileClassLoader2 fcl = new FileClassLoader2(CLASSPATH_TESTPROJEKT);
    cf = fcl.findClass(new File(CLASSPATH_TESTPROJEKT + DIRSEP + "de"
        + DIRSEP + "berndsteindorff" + DIRSEP + "junittca_local" + DIRSEP
        + "tests" + DIRSEP + "StocksSupportOkTest.class"));

    assertEquals("de.berndsteindorff.junittca.tests.StocksSupportOkTest",
        cf.getClassName());
    assertEquals(CLASSPATH_TESTPROJEKT + DIRSEP, cf.getClassPath());

    fcl = new FileClassLoader2(CLASSPATH_TESTPROJEKT);
    List<ClassFile> classFiles = new ArrayList<ClassFile>(1);
    classFiles.add(cf);
    Result result = JUnitCore.runClasses(fcl.reloadClasses(classFiles).get(
        0));
    assertEquals(4, result.getRunCount());
    assertEquals(0, result.getIgnoreCount());
    assertEquals(0, result.getFailureCount());
  }
View Full Code Here

    logger.info("oneMoreMethod");
    Project project = new Project("Bernds Projekt111");
    project.addTestClass(new ClassFile(NAME_DUMMYTEST, CLASSPATH + DIRSEP));

    assertEquals(1, project.getActualTestClasses().size());
    FileClassLoader2 fcl = new FileClassLoader2(CLASSPATH);
    Class<?> clazz = fcl.reloadClasses(project.getActualTestClasses()).get(
        0);
    assertEquals(6, clazz.getDeclaredMethods().length);

    try {
      loadChangedClass();

      fcl = new FileClassLoader2(CLASSPATH);
      clazz = fcl.reloadClasses(project.getActualTestClasses()).get(0);

      assertEquals(1, project.getActualTestClasses().size());
      assertEquals(7, clazz.getDeclaredMethods().length);
    } finally {
      loadOldClass();
View Full Code Here

  @Test
  public void noTestClassFoundInClassPath() {
    logger.info("noTestClassFoundInClassPath");
    File file = new File(Const.PATH_DB + "temp");
    file.mkdir();
    FileClassLoader2 fcl = new FileClassLoader2(PATH_DB + "temp");
    try {
      fcl.findClassesInClassPath(new UserConfiguration());
      fail("Es wurden doch Test-Klassen in " + PATH_DB + "temp gefunden");
    } catch (ClassNotFoundException e) {
      assertEquals(
          "Es gibt keine Klasse im Klassenpfad, welche eine Test-Methode enthält.\nKlassenpfad: "
              + Const.PATH_DB + "temp/", e.getMessage());
View Full Code Here

  /**
   * Test if a exception is thrown when there is no test in a file.
   */
  @Test
  public void noTestsFoundInFile() {
    FileClassLoader2 fcl = new FileClassLoader2(CLASSPATH);
    File file = new File(CLASSPATH + DIRSEP + "de" + DIRSEP
        + "berndsteindorff" + DIRSEP + "junittca_local" + DIRSEP
        + "TcaMain.class");
    try {
      ClassFile cf = fcl.findClass(file);
      assertNull(cf);

      ProjectFileHandler pfh = new ProjectFileHandler();
      pfh.newProject("bla");
      pfh.getProject().setClasspath(CLASSPATH);
View Full Code Here

TOP

Related Classes of de.berndsteindorff.junittca.model.FileClassLoader2

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.