diff --git a/core/modules/content_translation/src/Tests/ContentTranslationStandardFieldsTest.php b/core/modules/content_translation/src/Tests/ContentTranslationStandardFieldsTest.php
new file mode 100644
index 0000000..97a193d
--- /dev/null
+++ b/core/modules/content_translation/src/Tests/ContentTranslationStandardFieldsTest.php
@@ -0,0 +1,82 @@
+<?php
+
+/**
+ * @file
+ * Contains \Drupal\content_translation\Tests\ContentTranslationStandardFieldsTest.
+ */
+
+namespace Drupal\content_translation\Tests;
+
+use Drupal\simpletest\WebTestBase;
+
+/**
+ * Tests the Content translation settings using the standard profile.
+ */
+class ContentTranslationStandardFieldsTest extends WebTestBase {
+
+  /**
+   * Modules to enable.
+   *
+   * @var array
+   */
+  public static $modules = array('language',
+                                 'content_translation',
+                                 'node',
+                                 'comment',
+                                 'field_ui',
+                                 'entity_test'
+                           );
+
+  /**
+   * {@inheritdoc}
+   */
+  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']");
+  }
+
+}
