diff options
author | mcombellack <mcombellack@13f79535-47bb-0310-9956-ffa450edef68> | 2008-12-08 13:32:02 +0000 |
---|---|---|
committer | mcombellack <mcombellack@13f79535-47bb-0310-9956-ffa450edef68> | 2008-12-08 13:32:02 +0000 |
commit | 7d2a3b0139c9bd28756d633d5e110c3014f23c4b (patch) | |
tree | 4790b915141ce5c1095478ef1ce6880074cc56a7 /java/sca/itest | |
parent | 6a4273a1fa5f0fc32c76d9c8bf23e9b7597ba44e (diff) |
Converted existing comments in the source code to the correct JavaDoc format since they were just inline comments
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@724339 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca/itest')
-rw-r--r-- | java/sca/itest/scopes/src/test/java/org/apache/tuscany/sca/test/ScopeTestCase.java | 25 |
1 files changed, 19 insertions, 6 deletions
diff --git a/java/sca/itest/scopes/src/test/java/org/apache/tuscany/sca/test/ScopeTestCase.java b/java/sca/itest/scopes/src/test/java/org/apache/tuscany/sca/test/ScopeTestCase.java index 3f841910ec..959a6067ee 100644 --- a/java/sca/itest/scopes/src/test/java/org/apache/tuscany/sca/test/ScopeTestCase.java +++ b/java/sca/itest/scopes/src/test/java/org/apache/tuscany/sca/test/ScopeTestCase.java @@ -31,14 +31,27 @@ import org.junit.Test; public class ScopeTestCase { - private static final int NUM_THREADS = 4; // number of threads to drive each scope container - private static final int ITERATIONS = 200; // number of iterations per thread + /** + * Number of threads to drive each scope container. + */ + private static final int NUM_THREADS = 4; + + /** + * Number of iterations per thread. + */ + private static final int ITERATIONS = 200; + private Node node; - // Test scope containers. - // The request scope container isn't hooked up for some reason so the code below - // that tests request scope is commented out. - // Code could be added to test session scope once it is supported in a standalone environment. + /** + * Test scope containers. + * + * The request scope container isn't hooked up for some reason so the code below + * that tests request scope is commented out. + * Code could be added to test session scope once it is supported in a standalone environment. + * + * @throws InterruptedException Test failed + */ @Test public void testScopes() throws InterruptedException { |