MediaWysiwygTest.php in Media Migration 8        
                          
                  
                        
  
  
  
  
  
File
  tests/src/Functional/MediaWysiwygTest.php
  
    View source  
  <?php
namespace Drupal\Tests\media_migration\Functional;
use Drupal\Core\Url;
class MediaWysiwygTest extends MigrateMediaTestBase {
  
  public function testNoMissingPluginForComment() {
    $this
      ->submitMigrateUpgradeSourceConnectionForm();
    $this
      ->assertSession()
      ->pageTextNotContains('Could not find a MediaWysiwyg plugin');
    $this
      ->drupalGet(Url::fromRoute('dblog.overview'));
    $this
      ->assertSession()
      ->pageTextNotContains('Could not find a MediaWysiwyg plugin');
  }
}
 
Classes
        
  
  
      
      
         
      
                  | Name   | Description | 
    
    
          
                  | MediaWysiwygTest | Functional test for testing the MediaWysiwyg plugin's fallback logic. |