Skip to content

Commit 891f0c1

Browse files
author
Ben Keller
committed
Initial commit
1 parent 15ee707 commit 891f0c1

8 files changed

Lines changed: 389 additions & 0 deletions

File tree

.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
.DS_Store
2+
*build/
3+
dist/
4+
.gradle/
5+
ui/
6+
*.orig
7+
*~
8+
TAGS
9+
10+
# IDE-specific ignores
11+
# lists comes from import, and running project build
12+
13+
# IntelliJ IDEA
14+
.idea/
15+
out/
16+
*.iml
17+
*.ipr
18+
*.iws
19+
20+
# Eclipse
21+
.settings/
22+
.classpath
23+
.project
24+
bin/
25+
26+
# NetBeans
27+
/.nb-gradle/

LICENSE.txt

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
2+
Unless otherwise noted, Randoop is distributed under the MIT license,
3+
which appears below. Some files in Randoop's distribution are
4+
distributed under a different license. These exceptions are:
5+
6+
Randoop source code:
7+
src/randoop/util/StreamRedirectThread.java (License in file)
8+
src/randoop/util/StringEscapeUtils.java (Apache License 2.0)
9+
src/randoop/util/StringPrintWriter.java (Apache License 2.0)
10+
plugin/src/randoop/plugin/util/ReaderInputStream.java (Apache License 2.0)
11+
12+
Libraries used by Randoop:
13+
lib/ (various licenses, see individual jar files)
14+
15+
Experimental subject programs (not part of Randoop's implementation)
16+
systemtests/ (various licenses)
17+
tests/ (various licenses)
18+
19+
Copyright @ 2010 Massachusetts Institute of Technology
20+
Copyright @ 2016 University of Washington
21+
22+
Permission is hereby granted, free of charge, to any person obtaining
23+
a copy of this software and associated documentation files (the
24+
.Software.), to deal in the Software without restriction, including
25+
without limitation the rights to use, copy, modify, merge, publish,
26+
distribute, sublicense, and/or sell copies of the Software, and to
27+
permit persons to whom the Software is furnished to do so, subject to
28+
the following conditions:
29+
30+
The above copyright notice and this permission notice shall be
31+
included in all copies or substantial portions of the Software.
32+
33+
The names and trademarks of copyright holders may not be used in
34+
advertising or publicity pertaining to the software without specific
35+
prior permission. Title to copyright in this software and any
36+
associated documentation will at all times remain with the copyright
37+
holders.
38+
39+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
40+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
41+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
42+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
43+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
44+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
45+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
46+
47+
This product includes software developed by the Apache Software
48+
Foundation (http://www.apache.org/)."
49+
50+
The Randoop plugin uses the Silk icon set created by Mark James
51+
(http://www.famfamfam.com/lab/icons/silk/).

build.gradle

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/*
2+
* This build file was auto generated by running the Gradle 'init' task
3+
* by 'bjkeller' at '12/7/16 8:08 AM' with Gradle 3.2.1
4+
*
5+
* This generated file contains a sample Java project to get you started.
6+
* For more details take a look at the Java Quickstart chapter in the Gradle
7+
* user guide available at https://docs.gradle.org/3.2.1/userguide/tutorial_java_projects.html
8+
*/
9+
10+
// Apply the java plugin to add support for Java
11+
apply plugin: 'java'
12+
13+
// In this section you declare where to find the dependencies of your project
14+
repositories {
15+
// Use 'jcenter' for resolving your dependencies.
16+
// You can declare any Maven/Ivy/file repository here.
17+
jcenter()
18+
}
19+
20+
// In this section you declare the dependencies for your production and test code
21+
dependencies {
22+
// The production code uses the SLF4J logging API at compile time
23+
compile 'org.slf4j:slf4j-api:1.7.21'
24+
25+
// Declare the dependency for your favourite test framework you want to use in your tests.
26+
// TestNG is also supported by the Gradle Test task. Just change the
27+
// testCompile dependency to testCompile 'org.testng:testng:6.8.1' and add
28+
// 'test.useTestNG()' to your build script.
29+
testCompile 'junit:junit:4.12'
30+
}

gradle/wrapper/gradle-wrapper.jar

53 KB
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#Wed Dec 07 08:08:34 PST 2016
2+
distributionBase=GRADLE_USER_HOME
3+
distributionPath=wrapper/dists
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-3.2.1-bin.zip

gradlew

Lines changed: 172 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 84 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

settings.gradle

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
/*
2+
* This settings file was auto generated by the Gradle buildInit task
3+
* by 'bjkeller' at '12/7/16 8:08 AM' with Gradle 3.2.1
4+
*
5+
* The settings file is used to specify which projects to include in your build.
6+
* In a single project build this file can be empty or even removed.
7+
*
8+
* Detailed information about configuring a multi-project build in Gradle can be found
9+
* in the user guide at https://docs.gradle.org/3.2.1/userguide/multi_project_builds.html
10+
*/
11+
12+
/*
13+
// To declare projects as part of a multi-project build use the 'include' method
14+
include 'shared'
15+
include 'api'
16+
include 'services:webservice'
17+
*/
18+
19+
rootProject.name = 'tutorial-examples'

0 commit comments

Comments
 (0)