/**
   * Run the String format(LogRecord) method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 6/7/15 4:20 PM
   */
  @Test
  public void testFormat_fixture_2() throws Exception {
    LogFormatter fixture2 = getFixture();
    LogRecord record = new LogRecord(Level.CONFIG, "0123456789");

    String result = fixture2.format(record);

    // add additional test code here
    // An unexpected exception was thrown in user code while executing this test:
    //    java.lang.NullPointerException
    //       at net.sourceforge.schemaspy.util.LogFormatter.format(LogFormatter.java:111)
    assertNotNull(result);
  }