# `BB.LiveView.FeatureCase`
[🔗](https://github.com/beam-bots/bb_liveview/blob/main/test/support/feature_case.ex#L5)

Test case for feature tests using phoenix_test.

Provides a unified testing interface for both LiveView and static pages.

## Example

    defmodule BB.LiveView.DashboardTest do
      use BB.LiveView.FeatureCase

      test "shows robot name", %{conn: conn} do
        conn
        |> visit("/robot")
        |> assert_has("h1", text: "TestRobot")
      end
    end

---

*Consult [api-reference.md](api-reference.md) for complete listing*
