thoughtbot/capybara-webkit

View on GitHub
src/NullCommand.cpp

Summary

Maintainability
Test Coverage
#include "NullCommand.h"
#include "WebPage.h"
#include "WebPageManager.h"
#include "ErrorMessage.h"

NullCommand::NullCommand(QString name, QObject *parent) : Command(parent) {
  m_name = name;
}

void NullCommand::start() {
  QString failure = QString("[Capybara WebKit] Unknown command: ") + m_name + "\n";
  finish(false, new ErrorMessage(failure));
}