Lines Matching full:this

18         $this->setSyntax('md');
23 $this->P->addMode('gfm_emphasis_strong_underscore', new GfmEmphasisStrongUnderscore());
24 $this->P->parse('Foo ___Bar___ Baz');
39 $this->assertCalls($calls, $this->H->calls);
44 $this->P->addMode('gfm_emphasis_strong_underscore', new GfmEmphasisStrongUnderscore());
45 $this->P->parse('___a___');
46 $this->assertContains('emphasis_open', array_column($this->H->calls, 0));
47 $this->assertContains('strong_open', array_column($this->H->calls, 0));
52 $this->P->addMode('gfm_emphasis_strong_underscore', new GfmEmphasisStrongUnderscore());
53 $this->P->parse('___ foo___');
54 $this->assertNotContains('emphasis_open', array_column($this->H->calls, 0));
59 $this->P->addMode('gfm_emphasis_strong_underscore', new GfmEmphasisStrongUnderscore());
60 $this->P->parse('___foo ___');
61 $this->assertNotContains('emphasis_open', array_column($this->H->calls, 0));
66 $this->P->addMode('gfm_emphasis_strong_underscore', new GfmEmphasisStrongUnderscore());
67 $this->P->parse("___foo\n\nbar___");
68 $this->assertNotContains('emphasis_open', array_column($this->H->calls, 0));
73 $this->P->addMode('gfm_emphasis_strong_underscore', new GfmEmphasisStrongUnderscore());
74 $this->P->parse('____foo____');
75 $this->assertNotContains('emphasis_open', array_column($this->H->calls, 0));
80 $this->P->addMode('gfm_emphasis_strong_underscore', new GfmEmphasisStrongUnderscore());
81 $this->P->parse('___foo__');
82 $this->assertNotContains('emphasis_open', array_column($this->H->calls, 0));
87 $this->P->addMode('gfm_emphasis_strong_underscore', new GfmEmphasisStrongUnderscore());
88 $this->P->parse('abc___foo___');
89 $this->assertNotContains('emphasis_open', array_column($this->H->calls, 0));
94 $this->P->addMode('gfm_emphasis_strong_underscore', new GfmEmphasisStrongUnderscore());
95 $this->P->parse('für___etwas___');
96 $this->assertNotContains('emphasis_open', array_column($this->H->calls, 0));
101 $this->P->addMode('gfm_emphasis_strong_underscore', new GfmEmphasisStrongUnderscore());
102 $this->P->parse('foo ___für___ bar');
103 $this->assertContains('emphasis_open', array_column($this->H->calls, 0));
104 $this->assertContains('strong_open', array_column($this->H->calls, 0));
109 $this->assertSame(65, (new GfmEmphasisStrongUnderscore())->getSort());
114 $this->P->addMode('gfm_emphasis_strong_underscore', new GfmEmphasisStrongUnderscore());
115 $this->P->parse('___ foo ___bar___');
116 $this->assertContains('emphasis_open', array_column($this->H->calls, 0));
117 $this->assertStringContainsString('___ foo ', $this->H->calls[2][1][0]);