Package com.dubture.composer.test

Source Code of com.dubture.composer.test.ComposerModelTests

package com.dubture.composer.test;

import org.eclipse.dltk.core.IScriptProject;
import org.eclipse.dltk.core.tests.model.AbstractModelTests;

public abstract class ComposerModelTests extends AbstractModelTests {

  public ComposerModelTests(String name) {
    super(ComposerCoreTestPlugin.PLUGIN_ID, name);
  }

  protected IScriptProject ensureScriptProject(String name) {
    IScriptProject prj = null;
    try {
      deleteProject(name);
      prj = setUpScriptProject(name);
    } catch (Exception e) {
    }
   
    return prj;
  }
}
TOP

Related Classes of com.dubture.composer.test.ComposerModelTests

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.