Author: rdonkin
Date: Mon Dec  9 05:44:24 2013
New Revision: 1549413

URL: http://svn.apache.org/r1549413
Log:
Add Java Doc.

Modified:
    
creadur/rat/branches/gsoc/apache-rat-core/src/test/java/org/apache/rat/analysis/license/W3CDocLicenseTest.java

Modified: 
creadur/rat/branches/gsoc/apache-rat-core/src/test/java/org/apache/rat/analysis/license/W3CDocLicenseTest.java
URL: 
http://svn.apache.org/viewvc/creadur/rat/branches/gsoc/apache-rat-core/src/test/java/org/apache/rat/analysis/license/W3CDocLicenseTest.java?rev=1549413&r1=1549412&r2=1549413&view=diff
==============================================================================
--- 
creadur/rat/branches/gsoc/apache-rat-core/src/test/java/org/apache/rat/analysis/license/W3CDocLicenseTest.java
 (original)
+++ 
creadur/rat/branches/gsoc/apache-rat-core/src/test/java/org/apache/rat/analysis/license/W3CDocLicenseTest.java
 Mon Dec  9 05:44:24 2013
@@ -24,15 +24,28 @@ import static org.junit.Assert.assertTha
 import org.junit.Before;
 import org.junit.Test;
 
+/**
+ * The Class W3CDocLicenseTest.
+ */
 public class W3CDocLicenseTest {
 
+       /** The license. */
     W3CDocLicense license;
 
+       /**
+        * Sets the up.
+        * 
+        * @throws Exception
+        *             the exception
+        */
     @Before
     public void setUp() throws Exception {
         this.license = new W3CDocLicense();
     }
 
+       /**
+        * Test notes.
+        */
     @Test
     public void testNotes() {
         assertThat(
@@ -40,11 +53,17 @@ public class W3CDocLicenseTest {
                 is("Note that W3CD does not allow modifications. See 
http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231.";));
     }
 
+       /**
+        * Test category.
+        */
     @Test
     public void testCategory() {
         assertThat(this.license.getLicenseFamilyCategory(), is("W3CD "));
     }
 
+       /**
+        * Test name.
+        */
     @Test
     public void testName() {
         assertThat(this.license.getLicenseFamilyName(),


Reply via email to