AVM tests - only run explicit queries on basic tree (not implicitly for every setup)

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@21742 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Jan Vonka
2010-08-11 15:16:52 +00:00
parent d1a354c7ad
commit a25f44cdc1
2 changed files with 6 additions and 2 deletions

View File

@@ -98,6 +98,12 @@ public class AVMServiceTest extends AVMServiceTestBase
super.testSetup(); super.testSetup();
} }
public void testSetupAndQueriesAgainstBasicTree() throws Exception
{
setupBasicTree();
runQueriesAgainstBasicTree("main");
}
public void test_ALF_786() throws Exception public void test_ALF_786() throws Exception
{ {
int threads= 4; int threads= 4;

View File

@@ -92,7 +92,6 @@ public class AVMServiceTestBase extends TestCase
public void testSetup() throws Exception public void testSetup() throws Exception
{ {
setupBasicTree();
} }
/** /**
@@ -289,7 +288,6 @@ public class AVMServiceTestBase extends TestCase
throws IOException throws IOException
{ {
setupBasicTree0(); setupBasicTree0();
runQueriesAgainstBasicTree("main");
} }
protected void runQueriesAgainstBasicTree(String store) protected void runQueriesAgainstBasicTree(String store)