I usually just run the tests that failed in maven; However you can tight click
on the 'test' folder in eclipse and run JUnit tests (it will run all the tests
in the folder)
--
Jody Garnett
On Friday, 13 May 2011 at 10:15 AM, lee-verizon wrote:
> Yeah, I figured out the 'mvn install'. But for
Yeah, I figured out the 'mvn install'. But for running tests in eclipse,
I don't see how to 'run all tests' within eclipse.
Lee
On 5/12/2011 3:42 PM, Jody Garnett wrote:
It it uses the jars in ~/.m2/repository
To "install' your jars (for gt-data or gt-main) go into those
directories and say
It it uses the jars in ~/.m2/repository
To "install' your jars (for gt-data or gt-main) go into those directories and
say "mvn install".
Also if you have loaded everything into eclipse then when you run the tests
from eclipse it will use your local edits.
--
Jody Garnett
On Friday, 13 May 20
Another maven/build question: When I go to project gt-jdbc-h2 at a
command prompt and run, say, mvn test, does that use any local edits
I've made to, say, gt-data or gt-main? Or does it strictly use the
latest jar files for all its dependencies? How do I run a build/test so
that it *does* use m
There is a trick; gt-jdbc is "abstract" and does not do much :-)
You need to run the tests for gt-jdbc-h2; it uses a pure java database so the
tests can self contained.
--
Jody Garnett
On Monday, 9 May 2011 at 11:26 AM, lee-verizon wrote:
> So I'd like to run the JDBC unit tests regularly whi
So I'd like to run the JDBC unit tests regularly while I'm hacking
around to make sure I don't break anything. I went to gt-jdbc and ran
"mvn test" but that doesn't seem to run very many tests. Do I need to
run all the tests in org.geotools.jdbc, and if so how?
Thanks,
Lee
On 5/8/2011 2:30
On Monday, 9 May 2011 at 12:07 AM, lee-verizon wrote:
I'm making (slow) progress on the CSV store. I have the count() thing fixed.
Now moving on to the actual updating.
>
Cool.
> A couple more questions:
>
> 1. It looks like ContentFeatureStore.getWriter(Query, int) does not (yet)
> implem