Skip to content

Commit

Permalink
Merge branch '2.3' into 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tinwelint committed Nov 9, 2015
2 parents 5dfe32a + 2aaa4aa commit 58f4110
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,11 @@
import org.neo4j.test.SuppressOutput;
import org.neo4j.test.server.ExclusiveServerTestBase;

import static java.util.Arrays.asList;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.junit.Assert.assertTrue;

import static java.util.Arrays.asList;

public class StartupLoggingIT extends ExclusiveServerTestBase
{
@Test
Expand All @@ -61,15 +62,14 @@ public Object call() throws Exception
// TODO: Obviously the logging below is insane, but we added this test in a point release, so we don't want to break anyone grepping for this
// This should be changed in 3.0.0.
assertThat( captured, matchesLines(
warn( "Config file \\[config/neo4j-server.properties\\] does not exist." ),
warn( "Config file \\[config/neo4j.properties\\] does not exist." ),
warn( "Config file \\[config.neo4j-server\\.properties\\] does not exist." ),
warn( "Config file \\[config.neo4j\\.properties\\] does not exist." ),
info( "Successfully started database" ),
info( "Starting HTTP on port 7474 \\(.+ threads available\\)" ),
info( "Mounting static content at /webadmin" ),
info( "Mounting static content at /browser" ),
info( "Remote interface ready and available at http://.+:7474/" ),

info( "Successfully shutdown Neo4j Server" ),
info( "Successfully stopped database" ),
info( "Successfully shutdown database" ),
info( "Successfully shutdown Neo Server on port \\[.+\\], database \\[.+\\]")
Expand Down

0 comments on commit 58f4110

Please sign in to comment.