Package org.springframework.boot.actuate.endpoint.AutoConfigurationReportEndpoint

Examples of org.springframework.boot.actuate.endpoint.AutoConfigurationReportEndpoint.Report


    super("autoconfig");
  }

  @Override
  public Report invoke() {
    return new Report(this.autoConfigurationReport);
  }
View Full Code Here


        add(entry.getValue().isFullMatch() ? this.positiveMatches
            : this.negativeMatches, entry.getKey(), entry.getValue());

      }
      if (report.getParent() != null) {
        this.parent = new Report(report.getParent());
      }
    }
View Full Code Here

        "endpoints.autoconfig");
  }

  @Test
  public void invoke() throws Exception {
    Report report = getEndpointBean().invoke();
    assertTrue(report.getPositiveMatches().isEmpty());
    assertTrue(report.getNegativeMatches().containsKey("a"));
  }
View Full Code Here

TOP

Related Classes of org.springframework.boot.actuate.endpoint.AutoConfigurationReportEndpoint.Report

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.