Skip to content

Commit

Permalink
Gathering unclebob's subversion library
Browse files Browse the repository at this point in the history
  • Loading branch information
unclebob committed Dec 8, 2008
0 parents commit b94a542
Show file tree
Hide file tree
Showing 3,778 changed files with 192,909 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
Binary file added .DS_Store
Binary file not shown.
14 changes: 14 additions & 0 deletions .classpath
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="extra/ant"/>
<classpathentry kind="src" path="srcFitServerTests"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="lib" path="lib/xerces.jar"/>
<classpathentry kind="lib" path="lib/fitlibrary.jar"/>
<classpathentry kind="lib" path="lib/ant.jar"/>
<classpathentry kind="lib" path="lib/junit.jar"/>
<classpathentry kind="lib" path="lib/easymock.jar"/>
<classpathentry kind="lib" path="lib/svnkit.jar"/>
<classpathentry kind="output" path="classes"/>
</classpath>
6 changes: 6 additions & 0 deletions .gitignore
@@ -0,0 +1,6 @@
FitNesseRoot/ErrorLogs/
dist/
classes/
.svn
*-*.zip

17 changes: 17 additions & 0 deletions .project
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>fitnesse</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
38 changes: 38 additions & 0 deletions BUILD_README.txt
@@ -0,0 +1,38 @@
This document is intended for those who wish to build FitNesse and do development work.

BUILDING:
The build.xml should be sufficient to build FitNesse as long as junit.jar is in your system classpath.
If not then open build.xml and modify the 'junitJar' property to reflect your environment.

To build and run all tests, run the command
* ant

which builds the '''all''' target.

TESTING:
To run the unit tests:
* build all the class files
* set your working directory where you unpacked the source
* add to your classpath:
* the 'classes' directory
* junit.jar.
* run all tests.

There is a second source directory, "srcFitServerTests", which contains units tests that test
invocation of Fit servers written in Ruby, C++, and .NET. These tests are not run as part of the normal
ant test-related targets. When using an IDE, make sure it does not invoke these tests when running the
"normal" tests under the "src" directory.

Direct any questions to the FitNesse yahoo group or to fitnesse@objectmentor.com.

Note: Working with Eclipse and IntelliJ

The ant build generates two files from the templates in the "templates" directory:
* FrontPage.content.txt.template is used to generate FitNesseRoot/FrontPage/context.txt
* FitNesseVersion.java.template is used to generate src/fitnesse/FitNesseVersion.java

So, run "ant all" before loading a fresh checkout into an IDE.

Note: .NET Support (8/6/2008)

We re-installed the dotnet/*.dll and dotnet/*.exe files, taking them from the "fitnessedotnet" release on Sourceforge. This will allow the .NET Acceptance Tests to run right out of this distribution. However, you should consider using "fitnessedotnet". See the page FitNesseRoot/FitNesse/DotNet/context.txt for more information.
28 changes: 28 additions & 0 deletions FitNesse.iml
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<module relativePaths="true" type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="false">
<output url="file://$MODULE_DIR$/classes" />
<output-test url="file://$MODULE_DIR$/classes" />
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="junit-4.1" level="application" />
<orderEntry type="module-library">
<library>
<CLASSES>
<root url="file://$MODULE_DIR$/lib" />
</CLASSES>
<JAVADOC />
<SOURCES />
<jarDirectory url="file://$MODULE_DIR$/lib" recursive="false" />
</library>
</orderEntry>
</component>
<component name="RSpecModuleSettingsStorage">
<RSPEC_MODULE_SETTINGS_STORAGE_ID NAME="RSPEC_SUPPORT_TYPE" VALUE="NONE" />
</component>
</module>

0 comments on commit b94a542

Please sign in to comment.