Just curious, I never noticed a mention about the AbstractDataStore
test which is in Main. It think much of what we are talking about is
already there. It is used by the MemoryDataStoreTest and the
HSQLDataStoreTest.
Jesse
On 26-Sep-06, at 8:38 AM, Justin Deoliveira wrote:
> Using the fa
Rob Atkinson ha scritto:
> What about declaring an interface with a minimal set of test methods
> that must be implemented per data store?
>
> This would make it hard to comment out individual tests whilst
> developing, but maybe we allow the test suite to be built without
> declaring the inter
Using the factory spi could work, i never thought of doing it that way.
The way i have it implemented now is just subclassing the root test case
with a few template methods for setting up all the data.
-Justin
Jody Garnett wrote:
> Justin Deoliveira wrote:
>> The idea of a datastore compliance te
What about declaring an interface with a minimal set of test methods
that must be implemented per data store?
This would make it hard to comment out individual tests whilst
developing, but maybe we allow the test suite to be built without
declaring the interface, and only insist on it by time m
Justin Deoliveira ha scritto:
> Andrea Aime wrote:
>> Justin Deoliveira ha scritto:
>>> Hi all,
>>>
>>> The idea of a datastore compliance test has been kicking around for some
>>> time now. The idea is to create an abstract test case which tests all
>>> aspects of the datastore api, and then subcl
Justin Deoliveira wrote:
> The idea of a datastore compliance test has been kicking around for some
> time now. The idea is to create an abstract test case which tests all
> aspects of the datastore api, and then subclass for each data store.
>
> Jody implemented such a test for memory data store s
Andrea Aime wrote:
> Justin Deoliveira ha scritto:
>> Hi all,
>>
>> The idea of a datastore compliance test has been kicking around for some
>> time now. The idea is to create an abstract test case which tests all
>> aspects of the datastore api, and then subclass for each data store.
>>
>> Jody im
Justin Deoliveira ha scritto:
> Hi all,
>
> The idea of a datastore compliance test has been kicking around for some
> time now. The idea is to create an abstract test case which tests all
> aspects of the datastore api, and then subclass for each data store.
>
> Jody implemented such a test for
Hi all,
The idea of a datastore compliance test has been kicking around for some
time now. The idea is to create an abstract test case which tests all
aspects of the datastore api, and then subclass for each data store.
Jody implemented such a test for memory data store some time back. I
ported t