(t *testing.T)
| 11 | ) |
| 12 | |
| 13 | func TestGetCommand(t *testing.T) { |
| 14 | testConfig, ok := TestConfigurations["elixir"] |
| 15 | assert.True(t, ok, "unexpectedly unable to find elixir test config") |
| 16 | |
| 17 | cmd, err := testConfig.GetTestCommand() |
| 18 | assert.NoError(t, err) |
| 19 | |
| 20 | assert.Equal(t, cmd, "mix test") |
| 21 | } |
| 22 | |
| 23 | func TestWindowsCommands(t *testing.T) { |
| 24 | testConfig, ok := TestConfigurations["cobol"] |
nothing calls this directly
no test coverage detected