Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Markus Krug
EfficientRuleLearning
Commits
d8403933
Commit
d8403933
authored
Oct 29, 2016
by
Markus Krug
Browse files
Changed the defautl test location to $projectdir.test.
Now tests can be executed via the maven aggregator pom (main pom)
parent
ab7823cc
Changes
3
Show whitespace changes
Inline
Side-by-side
de.uniwue.ls6.rulelearning/DataStructure/pom.xml
View file @
d8403933
...
...
@@ -23,4 +23,5 @@
<version>
4.12
</version>
</dependency>
</dependencies>
</project>
\ No newline at end of file
de.uniwue.ls6.rulelearning/RuleLearning/src/test/FirstTest.java
View file @
d8403933
...
...
@@ -31,7 +31,6 @@ public class FirstTest {
List
<
Instance
>
instances
=
InstanceCreationFactory
.
createWindowedInstancesFromUIMA
(
document
,
2
,
2
,
"de.uniwue.kalimachos.coref.type.POS"
,
tsd
,
new
IsUppercaseFeatureGenerator
(),
new
WordFeaturegenerator
());
System
.
out
.
println
(
instances
.
size
());
algorithm
.
learn
(
instances
.
toArray
(
new
Instance
[
0
]));
}
...
...
de.uniwue.ls6.rulelearning/pom.xml
View file @
d8403933
...
...
@@ -17,4 +17,8 @@
<module>
RuleLearning
</module>
<module>
InstanceLoading
</module>
</modules>
<build>
<testSourceDirectory>
${project.basedir}/test
</testSourceDirectory>
</build>
</project>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment