|
From: Christopher W. <caw...@us...> - 2006-02-10 20:00:07
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.launching.tests/src/org/rubypeople/rdt/internal/launching In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13555/src/org/rubypeople/rdt/internal/launching Modified Files: TC_RunnerLaunching.java TC_RubyRuntime.java Log Message: try to fix tests to run with new code changes Index: TC_RubyRuntime.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.launching.tests/src/org/rubypeople/rdt/internal/launching/TC_RubyRuntime.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TC_RubyRuntime.java 22 Nov 2005 01:23:50 -0000 1.2 --- TC_RubyRuntime.java 10 Feb 2006 19:59:59 -0000 1.3 *************** *** 357,360 **** --- 357,375 ---- } + public void createLink(URI location, int updateFlags, IProgressMonitor monitor) throws CoreException { + // TODO Auto-generated method stub + + } + + public URI getRawLocationURI() { + // TODO Auto-generated method stub + return null; + } + + public boolean isLinked(int options) { + // TODO Auto-generated method stub + return false; + } + } Index: TC_RunnerLaunching.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.launching.tests/src/org/rubypeople/rdt/internal/launching/TC_RunnerLaunching.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** TC_RunnerLaunching.java 13 Oct 2005 18:59:46 -0000 1.4 --- TC_RunnerLaunching.java 10 Feb 2006 19:59:59 -0000 1.5 *************** *** 11,14 **** --- 11,15 ---- import org.eclipse.core.resources.IFile; import org.eclipse.core.resources.IProject; + import org.eclipse.core.resources.IResource; import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.IPath; *************** *** 232,235 **** --- 233,251 ---- return null; } + + public IResource[] getMappedResources() throws CoreException { + // TODO Auto-generated method stub + return null; + } + + public boolean isMigrationCandidate() throws CoreException { + // TODO Auto-generated method stub + return false; + } + + public void migrate() throws CoreException { + // TODO Auto-generated method stub + + } } |