Skip to content

Commit

Permalink
Merge e217a5f into a68dc2c
Browse files Browse the repository at this point in the history
  • Loading branch information
dickschoeller committed Feb 6, 2017
2 parents a68dc2c + e217a5f commit 08cc59c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 11 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# gedbrowser

Spring Boot application to display the genealogy data from a [GEDCOM]
(http://wiki-en.genealogy.net/GEDCOM) file. Once loaded, the data is managed
Spring Boot application to display the genealogy data from a
[GEDCOM](http://wiki-en.genealogy.net/GEDCOM) file. Once loaded,
the data is managed
in a [MongoDB](https://www.mongodb.org/) database.

Check it out by perusing [my genealogy database]
(http://www.schoellerfamily.org/gedbrowser/surnames?db=schoeller). You can
Check it out by perusing [my genealogy
database](http://www.schoellerfamily.org/gedbrowser/surnames?db=schoeller). You can
browse the database anonymously, but you will need a login with the appropriate
role to see living people.

Expand Down Expand Up @@ -98,5 +99,5 @@ TBD

## License

Gedbrowser is Open Source software released under the [Apache 2.0 license]
(http://www.apache.org/licenses/LICENSE-2.0.html).
Gedbrowser is Open Source software released under the
[Apache 2.0 license](http://www.apache.org/licenses/LICENSE-2.0.html).
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
@SuppressWarnings({ "PMD.ExcessiveImports",
"PMD.GodClass",
"PMD.TooManyStaticImports" })
public class GeoCodeTest {
public final class GeoCodeTest {
/** Logger. */
private final transient Log logger = LogFactory.getLog(getClass());

Expand Down Expand Up @@ -259,7 +259,8 @@ public void testCacheOldHomeModernToBroken() {
public void testCacheOldHomeBroken() {
logger.info("Entering testCacheOldHomeModernChange");
gcc.clear();
final GeoCodeItem entry1 = gcc.add(new GeoCodeItem("Old Home", "Blah Blah"));
final GeoCodeItem entry1 = gcc
.add(new GeoCodeItem("Old Home", "Blah Blah"));
final GeoCodeItem entry2 = gcc.find("Old Home", "Blah Blah");
assertEquals("Should be equal", entry1, entry2);
}
Expand All @@ -269,8 +270,10 @@ public void testCacheOldHomeBroken() {
public void testCacheOldHomeAddThenFind() {
logger.info("Entering testCacheOldHomeModernChange");
gcc.clear();
final GeoCodeItem entry1 = gcc.add(new GeoCodeItem("Old Home", "3341 Chaucer Lane, Bethlehem, PA"));
final GeoCodeItem entry2 = gcc.find("Old Home", "3341 Chaucer Lane, Bethlehem, PA");
final GeoCodeItem entry1 = gcc.add(new GeoCodeItem("Old Home",
"3341 Chaucer Lane, Bethlehem, PA"));
final GeoCodeItem entry2 = gcc.find("Old Home",
"3341 Chaucer Lane, Bethlehem, PA");
assertNotEquals("Should NOT be equal", entry1, entry2);
}

Expand All @@ -279,7 +282,8 @@ public void testCacheOldHomeAddThenFind() {
public void testCacheAddThenFind() {
logger.info("Entering testCacheOldHomeModernChange");
gcc.clear();
final GeoCodeItem entry1 = gcc.add(new GeoCodeItem("3341 Chaucer Lane, Bethlehem, PA"));
final GeoCodeItem entry1 = gcc
.add(new GeoCodeItem("3341 Chaucer Lane, Bethlehem, PA"));
final GeoCodeItem entry2 = gcc.find("3341 Chaucer Lane, Bethlehem, PA");
assertNotEquals("Should NOT be equal", entry1, entry2);
}
Expand Down

0 comments on commit 08cc59c

Please sign in to comment.