Sets a comment settings variable for the article content type.
string $name: Name of variable.
string $value: Value of variable.
string $message: Status message to display.
function setCommentSettings($name, $value, $message) {
variable_set($name . '_article', $value);
// Display status message.
$this
->pass($message);
}