diff --git a/core/modules/aggregator/lib/Drupal/aggregator/FeedFormController.php b/core/modules/aggregator/lib/Drupal/aggregator/FeedFormController.php
index f5ec5f6..e80a1d3 100644
--- a/core/modules/aggregator/lib/Drupal/aggregator/FeedFormController.php
+++ b/core/modules/aggregator/lib/Drupal/aggregator/FeedFormController.php
@@ -97,7 +97,7 @@ public function save(array $form, array &$form_state) {
       }
     }
     else {
-      watchdog('aggregator', 'Feed %feed added.', array('%feed' => $feed->label()), WATCHDOG_NOTICE, l($this->t('view'), 'admin/config/services/aggregator'));
+      watchdog('aggregator', 'Feed %feed added.', array('%feed' => $feed->label()), WATCHDOG_NOTICE, l($this->t('View'), 'admin/config/services/aggregator'));
       drupal_set_message($this->t('The feed %feed has been added.', array('%feed' => $feed->label())));
     }
   }
diff --git a/core/modules/ban/lib/Drupal/ban/Form/BanAdmin.php b/core/modules/ban/lib/Drupal/ban/Form/BanAdmin.php
index bc83c54..97ec764 100644
--- a/core/modules/ban/lib/Drupal/ban/Form/BanAdmin.php
+++ b/core/modules/ban/lib/Drupal/ban/Form/BanAdmin.php
@@ -62,7 +62,7 @@ public function buildForm(array $form, array &$form_state, $default_ip = '') {
       $row[] = $ip->ip;
       $links = array();
       $links['delete'] = array(
-        'title' => $this->t('delete'),
+        'title' => $this->t('Delete'),
         'route_name' => 'ban.delete',
         'route_parameters' => array('ban_id' => $ip->iid),
       );
diff --git a/core/modules/book/lib/Drupal/book/Form/BookAdminEditForm.php b/core/modules/book/lib/Drupal/book/Form/BookAdminEditForm.php
index e44a2c1..2e2a353 100644
--- a/core/modules/book/lib/Drupal/book/Form/BookAdminEditForm.php
+++ b/core/modules/book/lib/Drupal/book/Form/BookAdminEditForm.php
@@ -118,7 +118,7 @@ public function submitForm(array &$form, array &$form_state) {
           $node->book['link_title'] = $values['title'];
           $node->setNewRevision();
           $node->save();
-          watchdog('content', 'book: updated %title.', array('%title' => $node->label()), WATCHDOG_NOTICE, l($this->t('view'), 'node/' . $node->id()));
+          watchdog('content', 'book: updated %title.', array('%title' => $node->label()), WATCHDOG_NOTICE, l($this->t('View'), 'node/' . $node->id()));
         }
       }
     }
diff --git a/core/modules/comment/lib/Drupal/comment/CommentFormController.php b/core/modules/comment/lib/Drupal/comment/CommentFormController.php
index 1e9a460..e9759eb 100644
--- a/core/modules/comment/lib/Drupal/comment/CommentFormController.php
+++ b/core/modules/comment/lib/Drupal/comment/CommentFormController.php
@@ -391,7 +391,7 @@ public function save(array $form, array &$form_state) {
       $form_state['values']['cid'] = $comment->id();
 
       // Add an entry to the watchdog log.
-      watchdog('content', 'Comment posted: %subject.', array('%subject' => $comment->getSubject()), WATCHDOG_NOTICE, l(t('view'), 'comment/' . $comment->id(), array('fragment' => 'comment-' . $comment->id())));
+      watchdog('content', 'Comment posted: %subject.', array('%subject' => $comment->getSubject()), WATCHDOG_NOTICE, l(t('View'), 'comment/' . $comment->id(), array('fragment' => 'comment-' . $comment->id())));
 
       // Explain the approval queue if necessary.
       if (!$comment->isPublished()) {
diff --git a/core/modules/comment/lib/Drupal/comment/Form/CommentAdminOverview.php b/core/modules/comment/lib/Drupal/comment/Form/CommentAdminOverview.php
index efac3aa..a4db950 100644
--- a/core/modules/comment/lib/Drupal/comment/Form/CommentAdminOverview.php
+++ b/core/modules/comment/lib/Drupal/comment/Form/CommentAdminOverview.php
@@ -215,7 +215,7 @@ public function buildForm(array $form, array &$form_state, $type = 'new') {
       $comment_uri_options = $comment->urlInfo()->getOptions();
       $links = array();
       $links['edit'] = array(
-        'title' => $this->t('edit'),
+        'title' => $this->t('Edit'),
         'route_name' => 'comment.edit_page',
         'route_parameters' => array('comment' => $comment->id()),
         'options' => $comment_uri_options,
@@ -223,7 +223,7 @@ public function buildForm(array $form, array &$form_state, $type = 'new') {
       );
       if ($this->moduleHandler->invoke('content_translation', 'translate_access', array($comment))) {
         $links['translate'] = array(
-          'title' => $this->t('translate'),
+          'title' => $this->t('Translate'),
           'route_name' => 'content_translation.translation_overview_comment',
           'route_parameters' => array('comment' => $comment->id()),
           'options' => $comment_uri_options,
diff --git a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Link.php b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Link.php
index 4cbf6bb..c8ab6c0 100644
--- a/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Link.php
+++ b/core/modules/comment/lib/Drupal/comment/Plugin/views/field/Link.php
@@ -101,7 +101,7 @@ public function render(ResultRow $values) {
    *   Returns a string for the link text.
    */
   protected function renderLink($data, ResultRow $values) {
-    $text = !empty($this->options['text']) ? $this->options['text'] : t('view');
+    $text = !empty($this->options['text']) ? $this->options['text'] : t('View');
     /** @var \Drupal\comment\CommentInterface $comment */
     $comment = $data;
     $cid = $comment->id();
diff --git a/core/modules/content_translation/lib/Drupal/content_translation/Plugin/views/field/TranslationLink.php b/core/modules/content_translation/lib/Drupal/content_translation/Plugin/views/field/TranslationLink.php
index 83e3092..2a6ec79 100644
--- a/core/modules/content_translation/lib/Drupal/content_translation/Plugin/views/field/TranslationLink.php
+++ b/core/modules/content_translation/lib/Drupal/content_translation/Plugin/views/field/TranslationLink.php
@@ -61,7 +61,7 @@ public function render(ResultRow $values) {
    */
   protected function renderLink(EntityInterface $entity, ResultRow $values) {
     if (content_translation_translate_access($entity)) {
-      $text = !empty($this->options['text']) ? $this->options['text'] : t('translate');
+      $text = !empty($this->options['text']) ? $this->options['text'] : t('Translate');
 
       $this->options['alter']['make_link'] = TRUE;
       $this->options['alter']['path'] = $entity->getSystemPath('drupal:content-translation-overview');
diff --git a/core/modules/image/lib/Drupal/image/Form/ImageStyleEditForm.php b/core/modules/image/lib/Drupal/image/Form/ImageStyleEditForm.php
index 7b125d6..1e7d782 100644
--- a/core/modules/image/lib/Drupal/image/Form/ImageStyleEditForm.php
+++ b/core/modules/image/lib/Drupal/image/Form/ImageStyleEditForm.php
@@ -91,12 +91,12 @@ public function form(array $form, array &$form_state) {
       $is_configurable = $effect instanceof ConfigurableImageEffectInterface;
       if ($is_configurable) {
         $links['edit'] = array(
-          'title' => $this->t('edit'),
+          'title' => $this->t('Edit'),
           'href' => 'admin/config/media/image-styles/manage/' . $this->entity->id() . '/effects/' . $key,
         );
       }
       $links['delete'] = array(
-        'title' => $this->t('delete'),
+        'title' => $this->t('Delete'),
         'href' => 'admin/config/media/image-styles/manage/' . $this->entity->id() . '/effects/' . $key . '/delete',
       );
       $form['effects'][$key]['operations'] = array(
@@ -105,13 +105,13 @@ public function form(array $form, array &$form_state) {
       );
       $form['effects'][$key]['configure'] = array(
         '#type' => 'link',
-        '#title' => $this->t('edit'),
+        '#title' => $this->t('Edit'),
         '#href' => 'admin/config/media/image-styles/manage/' . $this->entity->id() . '/effects/' . $key,
         '#access' => $is_configurable,
       );
       $form['effects'][$key]['remove'] = array(
         '#type' => 'link',
-        '#title' => $this->t('delete'),
+        '#title' => $this->t('Delete'),
         '#href' => 'admin/config/media/image-styles/manage/' . $this->entity->id() . '/effects/' . $key . '/delete',
       );
     }
diff --git a/core/modules/image/lib/Drupal/image/Tests/ImageAdminStylesTest.php b/core/modules/image/lib/Drupal/image/Tests/ImageAdminStylesTest.php
index 9837196..bcad6fc 100644
--- a/core/modules/image/lib/Drupal/image/Tests/ImageAdminStylesTest.php
+++ b/core/modules/image/lib/Drupal/image/Tests/ImageAdminStylesTest.php
@@ -331,7 +331,7 @@ function testEditEffect() {
     $this->assertText(t('Scale and crop 300x200'));
 
     // There should normally be only one edit link on this page initially.
-    $this->clickLink(t('edit'));
+    $this->clickLink(t('Edit'));
     $this->drupalPostForm(NULL, array('data[width]' => '360', 'data[height]' => '240'), t('Update effect'));
     $this->assertText(t('Scale and crop 360x240'));
 
@@ -345,7 +345,7 @@ function testEditEffect() {
     $this->drupalPostForm(NULL, array('data[width]' => '12', 'data[height]' => '19'), t('Add effect'));
 
     // Edit the scale effect that was just added.
-    $this->clickLink(t('edit'));
+    $this->clickLink(t('Edit'));
     $this->drupalPostForm(NULL, array('data[width]' => '24', 'data[height]' => '19'), t('Update effect'));
     $this->drupalPostForm(NULL, array('new' => 'image_scale'), t('Add'));
 
diff --git a/core/modules/node/lib/Drupal/node/NodeFormController.php b/core/modules/node/lib/Drupal/node/NodeFormController.php
index 672c8ef..37d27ea 100644
--- a/core/modules/node/lib/Drupal/node/NodeFormController.php
+++ b/core/modules/node/lib/Drupal/node/NodeFormController.php
@@ -444,7 +444,7 @@ public function save(array $form, array &$form_state) {
     $node = $this->entity;
     $insert = $node->isNew();
     $node->save();
-    $node_link = l(t('view'), 'node/' . $node->id());
+    $node_link = l(t('View'), 'node/' . $node->id());
     $watchdog_args = array('@type' => $node->getType(), '%title' => $node->label());
     $t_args = array('@type' => node_get_type_label($node), '%title' => $node->label());
 
diff --git a/core/modules/node/lib/Drupal/node/NodeTypeFormController.php b/core/modules/node/lib/Drupal/node/NodeTypeFormController.php
index 7d6bd72..66c0a89 100644
--- a/core/modules/node/lib/Drupal/node/NodeTypeFormController.php
+++ b/core/modules/node/lib/Drupal/node/NodeTypeFormController.php
@@ -200,7 +200,7 @@ public function save(array $form, array &$form_state) {
     }
     elseif ($status == SAVED_NEW) {
       drupal_set_message(t('The content type %name has been added.', $t_args));
-      watchdog('node', 'Added content type %name.', $t_args, WATCHDOG_NOTICE, l(t('view'), 'admin/structure/types'));
+      watchdog('node', 'Added content type %name.', $t_args, WATCHDOG_NOTICE, l(t('View'), 'admin/structure/types'));
     }
 
     $form_state['redirect_route']['route_name'] = 'node.overview_types';
diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/field/Link.php b/core/modules/node/lib/Drupal/node/Plugin/views/field/Link.php
index f355ea5..d2a89a4 100644
--- a/core/modules/node/lib/Drupal/node/Plugin/views/field/Link.php
+++ b/core/modules/node/lib/Drupal/node/Plugin/views/field/Link.php
@@ -76,7 +76,7 @@ protected function renderLink($node, ResultRow $values) {
     if ($node->access('view')) {
       $this->options['alter']['make_link'] = TRUE;
       $this->options['alter']['path'] = 'node/' . $node->id();
-      $text = !empty($this->options['text']) ? $this->options['text'] : t('view');
+      $text = !empty($this->options['text']) ? $this->options['text'] : t('View');
       return $text;
     }
   }
diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/field/LinkDelete.php b/core/modules/node/lib/Drupal/node/Plugin/views/field/LinkDelete.php
index ecdd58d..78bb9dc 100644
--- a/core/modules/node/lib/Drupal/node/Plugin/views/field/LinkDelete.php
+++ b/core/modules/node/lib/Drupal/node/Plugin/views/field/LinkDelete.php
@@ -40,7 +40,7 @@ protected function renderLink($node, ResultRow $values) {
     $this->options['alter']['path'] = $node->getSystemPath('delete-form');
     $this->options['alter']['query'] = drupal_get_destination();
 
-    $text = !empty($this->options['text']) ? $this->options['text'] : t('delete');
+    $text = !empty($this->options['text']) ? $this->options['text'] : t('Delete');
     return $text;
   }
 
diff --git a/core/modules/node/lib/Drupal/node/Plugin/views/field/LinkEdit.php b/core/modules/node/lib/Drupal/node/Plugin/views/field/LinkEdit.php
index b0b3cb0..cf8a057 100644
--- a/core/modules/node/lib/Drupal/node/Plugin/views/field/LinkEdit.php
+++ b/core/modules/node/lib/Drupal/node/Plugin/views/field/LinkEdit.php
@@ -40,7 +40,7 @@ protected function renderLink($node, ResultRow $values) {
     $this->options['alter']['path'] = "node/" . $node->id() . "/edit";
     $this->options['alter']['query'] = drupal_get_destination();
 
-    $text = !empty($this->options['text']) ? $this->options['text'] : t('edit');
+    $text = !empty($this->options['text']) ? $this->options['text'] : t('Edit');
     return $text;
   }
 
diff --git a/core/modules/path/path.admin.inc b/core/modules/path/path.admin.inc
index d22fe66..e01006b 100644
--- a/core/modules/path/path.admin.inc
+++ b/core/modules/path/path.admin.inc
@@ -63,12 +63,12 @@ function path_admin_overview($keys = NULL) {
 
     $operations = array();
     $operations['edit'] = array(
-      'title' => t('edit'),
+      'title' => t('Edit'),
       'href' => "admin/config/search/path/edit/$data->pid",
       'query' => $destination,
     );
     $operations['delete'] = array(
-      'title' => t('delete'),
+      'title' => t('Delete'),
       'href' => "admin/config/search/path/delete/$data->pid",
       'query' => $destination,
     );
diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Form/OverviewTerms.php b/core/modules/taxonomy/lib/Drupal/taxonomy/Form/OverviewTerms.php
index 9187a65..4ff067a 100644
--- a/core/modules/taxonomy/lib/Drupal/taxonomy/Form/OverviewTerms.php
+++ b/core/modules/taxonomy/lib/Drupal/taxonomy/Form/OverviewTerms.php
@@ -253,17 +253,17 @@ public function buildForm(array $form, array &$form_state, VocabularyInterface $
       );
       $operations = array(
         'edit' => array(
-          'title' => $this->t('edit'),
+          'title' => $this->t('Edit'),
           'query' => $destination,
         ) + $term->urlInfo('edit-form')->toArray(),
         'delete' => array(
-          'title' => $this->t('delete'),
+          'title' => $this->t('Delete'),
           'query' => $destination,
         ) + $term->urlInfo('delete-form')->toArray(),
       );
       if ($this->moduleHandler->moduleExists('content_translation') && content_translation_translate_access($term)) {
         $operations['translate'] = array(
-          'title' => $this->t('translate'),
+          'title' => $this->t('Translate'),
           'query' => $destination,
         ) + $term->urlInfo('drupal:content-translation-overview')->toArray();
       }
diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/field/LinkEdit.php b/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/field/LinkEdit.php
index 2045fa8..295bb9c 100644
--- a/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/field/LinkEdit.php
+++ b/core/modules/taxonomy/lib/Drupal/taxonomy/Plugin/views/field/LinkEdit.php
@@ -66,7 +66,7 @@ public function render(ResultRow $values) {
         'vid' => $values->{$this->aliases['vid']},
       ));
       if ($term->access('update')) {
-        $text = !empty($this->options['text']) ? $this->options['text'] : t('edit');
+        $text = !empty($this->options['text']) ? $this->options['text'] : t('Edit');
         return l($text, 'taxonomy/term/'. $tid . '/edit', array('query' => drupal_get_destination()));
       }
     }
diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/TermFormController.php b/core/modules/taxonomy/lib/Drupal/taxonomy/TermFormController.php
index 5806386..ef34e89 100644
--- a/core/modules/taxonomy/lib/Drupal/taxonomy/TermFormController.php
+++ b/core/modules/taxonomy/lib/Drupal/taxonomy/TermFormController.php
@@ -190,11 +190,11 @@ public function save(array $form, array &$form_state) {
     switch ($term->save()) {
       case SAVED_NEW:
         drupal_set_message($this->t('Created new term %term.', array('%term' => $term->getName())));
-        watchdog('taxonomy', 'Created new term %term.', array('%term' => $term->getName()), WATCHDOG_NOTICE, l($this->t('edit'), 'taxonomy/term/' . $term->id() . '/edit'));
+        watchdog('taxonomy', 'Created new term %term.', array('%term' => $term->getName()), WATCHDOG_NOTICE, l($this->t('Edit'), 'taxonomy/term/' . $term->id() . '/edit'));
         break;
       case SAVED_UPDATED:
         drupal_set_message($this->t('Updated term %term.', array('%term' => $term->getName())));
-        watchdog('taxonomy', 'Updated term %term.', array('%term' => $term->getName()), WATCHDOG_NOTICE, l($this->t('edit'), 'taxonomy/term/' . $term->id() . '/edit'));
+        watchdog('taxonomy', 'Updated term %term.', array('%term' => $term->getName()), WATCHDOG_NOTICE, l($this->t('Edit'), 'taxonomy/term/' . $term->id() . '/edit'));
         // Clear the page and block caches to avoid stale data.
         Cache::invalidateTags(array('content' => TRUE));
         break;
diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermTest.php b/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermTest.php
index 23c0781..d998bfe 100644
--- a/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermTest.php
+++ b/core/modules/taxonomy/lib/Drupal/taxonomy/Tests/TermTest.php
@@ -316,7 +316,7 @@ function testTermInterface() {
     // Test edit link as accessed from Taxonomy administration pages.
     // Because Simpletest creates its own database when running tests, we know
     // the first edit link found on the listing page is to our term.
-    $this->clickLink(t('edit'));
+    $this->clickLink(t('Edit'));
 
     $this->assertRaw($edit['name'], 'The randomly generated term name is present.');
     $this->assertText($edit['description[value]'], 'The randomly generated term description is present.');
@@ -332,7 +332,7 @@ function testTermInterface() {
     // Check that the term is still present at admin UI after edit.
     $this->drupalGet('admin/structure/taxonomy/manage/' . $this->vocabulary->id() . '/overview');
     $this->assertText($edit['name'], 'The randomly generated term name is present.');
-    $this->assertLink(t('edit'));
+    $this->assertLink(t('Edit'));
 
     // Check the term link can be clicked through to the term page.
     $this->clickLink($edit['name']);
diff --git a/core/modules/taxonomy/lib/Drupal/taxonomy/VocabularyFormController.php b/core/modules/taxonomy/lib/Drupal/taxonomy/VocabularyFormController.php
index 3474bfb..cd3413e 100644
--- a/core/modules/taxonomy/lib/Drupal/taxonomy/VocabularyFormController.php
+++ b/core/modules/taxonomy/lib/Drupal/taxonomy/VocabularyFormController.php
@@ -136,7 +136,7 @@ public function save(array $form, array &$form_state) {
     $vocabulary->name = trim($vocabulary->name);
 
     $status = $vocabulary->save();
-    $edit_link = \Drupal::linkGenerator()->generateFromUrl($this->t('edit'), $this->entity->urlInfo());
+    $edit_link = \Drupal::linkGenerator()->generateFromUrl($this->t('Edit'), $this->entity->urlInfo());
     switch ($status) {
       case SAVED_NEW:
         drupal_set_message($this->t('Created new vocabulary %name.', array('%name' => $vocabulary->name)));
diff --git a/core/modules/user/lib/Drupal/user/RegisterFormController.php b/core/modules/user/lib/Drupal/user/RegisterFormController.php
index 30e33fe..dd33b54 100644
--- a/core/modules/user/lib/Drupal/user/RegisterFormController.php
+++ b/core/modules/user/lib/Drupal/user/RegisterFormController.php
@@ -106,7 +106,7 @@ public function save(array $form, array &$form_state) {
     $form_state['user'] = $account;
     $form_state['values']['uid'] = $account->id();
 
-    watchdog('user', 'New user: %name %email.', array('%name' => $form_state['values']['name'], '%email' => '<' . $form_state['values']['mail'] . '>'), WATCHDOG_NOTICE, l($this->t('edit'), 'user/' . $account->id() . '/edit'));
+    watchdog('user', 'New user: %name %email.', array('%name' => $form_state['values']['name'], '%email' => '<' . $form_state['values']['mail'] . '>'), WATCHDOG_NOTICE, l($this->t('Edit'), 'user/' . $account->id() . '/edit'));
 
     // Add plain text password into user account to generate mail tokens.
     $account->password = $pass;
diff --git a/core/tests/Drupal/Tests/Core/Config/StorageComparerTest.php b/core/tests/Drupal/Tests/Core/Config/StorageComparerTest.php
index 500c06f..9946c02 100644
--- a/core/tests/Drupal/Tests/Core/Config/StorageComparerTest.php
+++ b/core/tests/Drupal/Tests/Core/Config/StorageComparerTest.php
@@ -125,9 +125,9 @@ public function testCreateChangelistNoChange() {
       ->will($this->returnValue($config_data));
 
     $this->storageComparer->createChangelist();
-    $this->assertEmpty($this->storageComparer->getChangelist('create'));
-    $this->assertEmpty($this->storageComparer->getChangelist('delete'));
-    $this->assertEmpty($this->storageComparer->getChangelist('update'));
+    $this->assertEmpty($this->storageComparer->getChangelist('Create'));
+    $this->assertEmpty($this->storageComparer->getChangelist('Delete'));
+    $this->assertEmpty($this->storageComparer->getChangelist('Update'));
   }
 
   /**
@@ -158,9 +158,9 @@ public function testCreateChangelistCreate() {
       'views.view.test_view',
       'field.instance.node.article.body',
     );
-    $this->assertEquals($expected, $this->storageComparer->getChangelist('create'));
-    $this->assertEmpty($this->storageComparer->getChangelist('delete'));
-    $this->assertEmpty($this->storageComparer->getChangelist('update'));
+    $this->assertEquals($expected, $this->storageComparer->getChangelist('Create'));
+    $this->assertEmpty($this->storageComparer->getChangelist('Delete'));
+    $this->assertEmpty($this->storageComparer->getChangelist('Update'));
   }
 
   /**
@@ -191,9 +191,9 @@ public function testCreateChangelistDelete() {
       'views.view.test_view',
       'field.field.node.body',
     );
-    $this->assertEquals($expected, $this->storageComparer->getChangelist('delete'));
-    $this->assertEmpty($this->storageComparer->getChangelist('create'));
-    $this->assertEmpty($this->storageComparer->getChangelist('update'));
+    $this->assertEquals($expected, $this->storageComparer->getChangelist('Delete'));
+    $this->assertEmpty($this->storageComparer->getChangelist('Create'));
+    $this->assertEmpty($this->storageComparer->getChangelist('Update'));
   }
 
   /**
@@ -224,9 +224,9 @@ public function testCreateChangelistUpdate() {
       'system.site',
       'field.instance.node.article.body',
     );
-    $this->assertEquals($expected, $this->storageComparer->getChangelist('update'));
-    $this->assertEmpty($this->storageComparer->getChangelist('create'));
-    $this->assertEmpty($this->storageComparer->getChangelist('delete'));
+    $this->assertEquals($expected, $this->storageComparer->getChangelist('Update'));
+    $this->assertEmpty($this->storageComparer->getChangelist('Create'));
+    $this->assertEmpty($this->storageComparer->getChangelist('Delete'));
   }
 
 }
