diff --git a/core/modules/content_translation/src/Tests/ContentTranslationDefaultSettingsTest.php b/core/modules/content_translation/src/Tests/ContentTranslationDefaultSettingsTest.php
new file mode 100644
index 0000000..b8f80f1
--- /dev/null
+++ b/core/modules/content_translation/src/Tests/ContentTranslationDefaultSettingsTest.php
@@ -0,0 +1,65 @@
+<?php
+
+/**
+ * @file
+ * Contains Drupal\content_translation\Tests\ContentTranslationDefaultSettingsTest.
+ */
+
+namespace Drupal\content_translation\Tests;
+
+use Drupal\simpletest\WebTestBase;
+
+/**
+ * Tests the Entity Test Translation UI using the default profile.
+ */
+class ContentTranslationDefaultSettingsTest extends WebTestBase {
+
+  /**
+   * Modules to enable.
+   *
+   * @var array
+   */
+  public static $modules = array('language', 'content_translation', 'node', 'comment', 'field_ui', 'entity_test');
+
+  protected $profile = 'standard';
+
+  /**
+   * {@inheritdoc}
+   */
+  public static function getInfo() {
+    return array(
+      'name' => 'Content Translation Settings with default profile',
+      'description' => 'Test the Content Translation Settings usinf default profile',
+      'group' => 'Content Translation UI',
+    );
+  }
+
+  /**
+   * {@inheritdoc}
+   */
+  public function setUp() {
+    parent::setUp();
+
+    $admin_user = $this->drupalCreateUser(array('access administration pages', 'administer languages', 'administer content translation', 'administer content types', 'administer node fields', 'administer comment fields', 'administer comments', 'administer comment types'));
+    $this->drupalLogin($admin_user);
+  }
+
+  /**
+   * Tests that translatable fields are being rendered.
+   */
+  public function testFieldTranslatableArticle() {
+
+    $path = 'admin/config/regional/content-language';
+    $this->drupalGet($path);
+
+    // Check comment checkbox.
+    $this->assertFieldByXPath("//input[@id='edit-settings-node-article-fields-comment' and @checked='checked']");
+
+    // Check image checkbox.
+    $this->assertFieldByXPath("//input[@id='edit-settings-node-article-fields-field-image' and @checked='checked']");
+
+    // Check tag checkbox.
+    $this->assertFieldByXPath("//input[@id='edit-settings-node-article-fields-field-tags' and @checked='checked']");
+  }
+
+}
