func()

in gce-containers-startup/command/mock_runner.go [125:130]


func (m *MockRunner) AssertCalled(commandAndArgs string) {
	command, found := m.commands[commandAndArgs]
	if !found || command.callCount == 0 {
		m.t.Fatal(fmt.Sprintf("Expected os command not called: %s", commandAndArgs))
	}
}