Dear Wiki user,
You have subscribed to a wiki page or wiki category on "Db-derby Wiki" for change notification.
The "siddharthsrivastava/QuickStartGuide_NewDevelopers" page has been changed by siddharthsrivastava.
http://wiki.apache.org/db-derby/siddharthsrivastava/QuickStartGuide_NewDevelopers?action=diff&rev1=3&rev2=4
--------------------------------------------------
A Quick look at the phases a developer would go through with Derby:
- {{http://i%35%31.tinypic.com/%32n%39z%31%38i.png}}
+ {{http://i51.tinypic.com/2n9z18i.png}}
'''GETTING STARTED'''
@@ -57, +57 @@
. b) __ ____Building Derby from source:__
- . Refer to [[http://svn.apache.org/viewvc/db/derby/code/trunk/BUILDING.html?view=co|BUILDING.html]]
for detailed instructions.
+ . Refer to [[http://svn.apache.org/viewvc/db/derby/code/trunk/BUILDING.html?view=co|BUILDING.html]]
for detailed instructions.
- . . c) __ ____Running Regression Tests__
+ . . . . c) __ ____Running Regression Tests__
- . . A quick introduction to get started: There are two types of test in Derby: Harness
Tests and [[http://wiki.apache.org/db-derby/IntroToJUnit|JUnit]] Tests. We are converting
the harness tests to JUnit Tests . [[http://wiki.apache.org/db-derby/KillDerbyTestHarness#Goals|Why]]
?
+ . . A quick introduction to get started: There are two types of test in Derby:
Harness Tests and [[http://wiki.apache.org/db-derby/IntroToJUnit|JUnit]] Tests. We are converting
the harness tests to JUnit Tests . [[http://wiki.apache.org/db-derby/KillDerbyTestHarness#Goals|Why]]
?
- . . . Whenever you make changes to the code, these tests need to be run so as to make
sure that the changes didn’t break any other part of Derby. To run '''suites.All''' (the
suite that run
+ . . Whenever you make changes to the code, these tests need to be run so as to make
sure that the changes didn’t break any other part of Derby.
+ . . To run '''suites.All''' (the suite that runs all the JUnit tests in Derby),
add junit.jar to your classpath and run:
- . all the JUnit tests in Derby), add junit.jar to your classpath and run:
- . . . ''java -XX:MaxPermSize=512m
junit.textui.TestRunner org.apache.derbyTesting.functionTests.suites.All''
- .
- . . (Note: It can take approximately 4-6 hours for regression tests to complete)
- .
+ . . ''java -XX:MaxPermSize=512m junit.textui.TestRunner org.apache.derbyTesting.functionTests.suites.All''
+ . (Note: It can take approximately 4-6 hours for regression tests to complete)
+
- . To run derbyAll (the suite for running harness tests in Derby), add jakarta-oro-2.0.8.jar
to your classpath and run:
+ . . To run derbyAll (the suite for running harness tests in Derby), add jakarta-oro-2.0.8.jar
to your classpath and run:
- . . ''java org.apache.derbyTesting.functionTests.harness.RunSuite
derbyall''
+ . . . ''java org.apache.derbyTesting.functionTests.harness.RunSuite derbyall''
+ . .
- . . For detailed information about tests, refer [[http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/README.htm?view=co|Testing
README]]
+ . For detailed information about tests, refer [[http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/README.htm?view=co|Testing
README]]
'''Developer Tips:'''
|