Author: rdonkin
Date: Sat Dec 7 10:40:48 2013
New Revision: 1548832
URL: http://svn.apache.org/r1548832
Log:
Add java doc.
Modified:
creadur/rat/branches/gsoc/apache-rat-core/src/test/java/org/apache/rat/analysis/license/SimplePatternBasedLicenseTest.java
Modified:
creadur/rat/branches/gsoc/apache-rat-core/src/test/java/org/apache/rat/analysis/license/SimplePatternBasedLicenseTest.java
URL:
http://svn.apache.org/viewvc/creadur/rat/branches/gsoc/apache-rat-core/src/test/java/org/apache/rat/analysis/license/SimplePatternBasedLicenseTest.java?rev=1548832&r1=1548831&r2=1548832&view=diff
==============================================================================
---
creadur/rat/branches/gsoc/apache-rat-core/src/test/java/org/apache/rat/analysis/license/SimplePatternBasedLicenseTest.java
(original)
+++
creadur/rat/branches/gsoc/apache-rat-core/src/test/java/org/apache/rat/analysis/license/SimplePatternBasedLicenseTest.java
Sat Dec 7 10:40:48 2013
@@ -24,7 +24,14 @@ import static org.junit.Assert.assertTha
import org.junit.Test;
+/**
+ * The Class SimplePatternBasedLicenseTest.
+ */
public class SimplePatternBasedLicenseTest {
+
+ /**
+ * Test license family constructor sets notes.
+ */
@Test
public void testLicenseFamilyConstructorSetsNotes() {
final String someNotes = "Some notes about a license family";
@@ -33,6 +40,9 @@ public class SimplePatternBasedLicenseTe
someNotes).build()).getNotes(), is(someNotes));
}
+ /**
+ * Test license family constructor sets category.
+ */
@Test
public void testLicenseFamilyConstructorSetsCategory() {
final String someCategory = "http://some.category.org";
@@ -42,6 +52,9 @@ public class SimplePatternBasedLicenseTe
is(someCategory));
}
+ /**
+ * Test license family constructor sets name.
+ */
@Test
public void testLicenseFamilyConstructorSetsName() {
final String someName = "http://some.name.org";