(t *testing.T)
| 805 | } |
| 806 | |
| 807 | func TestCreateQuickstartApp_UnsupportedKey(t *testing.T) { |
| 808 | t.Parallel() |
| 809 | |
| 810 | testCLI := &cli{renderer: &display.Renderer{MessageWriter: &bytes.Buffer{}, ResultWriter: &bytes.Buffer{}}} |
| 811 | _, err := createQuickstartApp(&cobra.Command{}, testCLI, SetupInputs{}, "unknown:framework:none") |
| 812 | assert.ErrorContains(t, err, "unsupported quickstart arguments") |
| 813 | } |
| 814 | |
| 815 | // -- applyDetectionToInputs --. |
| 816 |
nothing calls this directly
no test coverage detected