(t *testing.T)
| 51 | } |
| 52 | |
| 53 | func TestExecutePlanEmpty(t *testing.T) { |
| 54 | svc, _ := newTestService(t) |
| 55 | err := svc.executePlan(t.Context(), &types.Project{Name: "test"}, emptyObservedState("test"), &Plan{}) |
| 56 | assert.NilError(t, err) |
| 57 | } |
| 58 | |
| 59 | func TestExecutePlanCreateNetwork(t *testing.T) { |
| 60 | svc, apiClient := newTestService(t) |
nothing calls this directly
no test coverage detected