{% extends "base.html" %} {% from "_links.html" import go, kind_dot %} {% block main %}
{{ kind_dot("capability") }}Registry

Hypothesis registry

{{ result.entries | length }} capabilities · {{ statuses.live }} live, {{ statuses.falsified }} falsified, {{ statuses.pivoted }} pivoted · {{ result.lacking_criteria }} lacking criteria · {{ result.incomplete_reach }} with incomplete reach

{% if result.values %}

Value {{ result.values | length }}

{% endif %} {% for status in ("live", "falsified", "pivoted") %} {% set group = grouped[status] %}

{{ status }} {{ group | length }}

{% if not group %}

None.

{% else %} {% endif %}
{% endfor %}

Compilation coverage

How many success criteria at each layer are bound to something that executes.

{% for layer in result.coverage %} {% endfor %}
LayerCriteria sourceAssertionBound Coverage
Level {{ layer.layer }}{{ layer.criteria_source }} {{ layer.assertion }}{{ layer.bound }} / {{ layer.total }} {{ "%.1f" | format(layer.ratio * 100) }}%
{% endblock %}