Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
raideplugin committed Jul 12, 2020
0 parents commit 42ae12a
Show file tree
Hide file tree
Showing 456 changed files with 92,343 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" output="target/classes" path="src">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry exported="true" kind="lib" path="lib/commons-beanutils-1.9.3.jar"/>
<classpathentry exported="true" kind="lib" path="lib/commons-collections-3.2.2.jar"/>
<classpathentry exported="true" kind="lib" path="lib/commons-lang3-3.5.jar"/>
<classpathentry exported="true" kind="lib" path="lib/commons-logging-1.2.jar"/>
<classpathentry exported="true" kind="lib" path="lib/javaparser-core-3.2.4-sources.jar"/>
<classpathentry exported="true" kind="lib" path="lib/javaparser-core-3.2.4.jar"/>
<classpathentry exported="true" kind="lib" path="lib/opencsv-3.9.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/bin/
/target/
34 changes: 34 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>RAIDE</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.ManifestBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.SchemaBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>org.eclipse.pde.PluginNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
16 changes: 16 additions & 0 deletions .settings/org.eclipse.jdt.core.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
org.eclipse.jdt.core.compiler.release=disabled
org.eclipse.jdt.core.compiler.source=1.8
3 changes: 3 additions & 0 deletions .settings/org.eclipse.jdt.ui.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#Thu Jun 21 00:11:49 EEST 2007
eclipse.preferences.version=1
internal.default.compliance=default
4 changes: 4 additions & 0 deletions .settings/org.eclipse.m2e.core.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
activeProfiles=
eclipse.preferences.version=1
resolveWorkspaceProjects=true
version=1
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

44 changes: 44 additions & 0 deletions META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: RAIDE Plug-in
Bundle-SymbolicName: org.ufba.raide;singleton:=true
Bundle-Version: 1.0
Bundle-Activator: org.ufba.raide.Activator
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
org.eclipse.jdt.core,
org.eclipse.core.resources,
org.eclipse.jface.text,
org.eclipse.ui.workbench.texteditor,
org.eclipse.jdt.ui,
org.eclipse.ltk.core.refactoring,
org.eclipse.ltk.ui.refactoring,
org.eclipse.compare,
org.eclipse.draw2d,
org.eclipse.core.filebuffers,
org.eclipse.ui.ide,
org.eclipse.jdt;bundle-version="3.18.0"
Bundle-ActivationPolicy: lazy
Import-Package: org.eclipse.jdt.core.refactoring
Export-Package: org.ufba.raide.java.ast,
org.ufba.raide.java.ast.decomposition,
org.ufba.raide.java.ast.decomposition.cfg,
org.ufba.raide.java.ast.decomposition.cfg.mapping,
org.ufba.raide.java.ast.decomposition.cfg.mapping.precondition,
org.ufba.raide.java.ast.decomposition.matching,
org.ufba.raide.java.clone.parsers,
org.ufba.raide.java.distance,
org.ufba.raide.java.refactoring.manipulators,
org.ufba.raide.java.refactoring.views,
org.ufba.raide.java.testsmell,
org.ufba.raide.java.testsmell.smell
Bundle-ClassPath: lib/commons-beanutils-1.9.3.jar,
lib/commons-collections-3.2.2.jar,
lib/commons-lang3-3.5.jar,
lib/commons-logging-1.2.jar,
lib/javaparser-core-3.2.4-sources.jar,
lib/javaparser-core-3.2.4.jar,
lib/opencsv-3.9.jar,
.
Bundle-Vendor: UFBA
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# RefActorIng test Design Errors (RAIDE)
<img src="raide_icon.png" width="200">
The RAIDE Plugin is a tool for analyzing test smells and is a pioneer in automated refactoring of test smells for Java projects with JUnit. The first version of the tool supports the test smells Assertion Roulette and Duplicate Assert.

> We reuse [JDeodorant](https://github.com/tsantalis/JDeodorant) graphics components and [tsDetect](https://github.com/TestSmells) detection rules.
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
theme: jekyll-theme-minimal
13 changes: 13 additions & 0 deletions build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
source.. = src/
output.. = bin/
bin.includes = plugin.xml,\
META-INF/,\
.,\
icons/,\
lib/commons-beanutils-1.9.3.jar,\
lib/commons-collections-3.2.2.jar,\
lib/commons-lang3-3.5.jar,\
lib/commons-logging-1.2.jar,\
lib/javaparser-core-3.2.4-sources.jar,\
lib/javaparser-core-3.2.4.jar,\
lib/opencsv-3.9.jar
1 change: 1 addition & 0 deletions docs/_config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
theme: jekyll-theme-leap-day
Empty file added docs/teste.txt
Empty file.
Binary file added icons/0.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/5.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added icons/compass.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 42ae12a

Please sign in to comment.