Lines Matching +full:server +full:-
9 * Tests for the {@see Windowssharelink} parser mode: `\\server\share` UNC paths,
17 $this->P->addMode('windowssharelink', new Windowssharelink());
18 $this->P->parse('Foo \\\server\share Bar');
23 ['windowssharelink', ['\\\server\share', null]],
28 $this->assertCalls($calls, $this->H->calls);
32 $this->P->addMode('windowssharelink', new Windowssharelink());
33 $this->P->parse('Foo \\\server\share-hyphen Bar');
38 ['windowssharelink', ['\\\server\share-hyphen', null]],
43 $this->assertCalls($calls, $this->H->calls);
47 $this->P->addMode('internallink', new Internallink());
48 $this->P->parse('Foo [[\\\server\share|My Documents]] Bar');
53 ['windowssharelink', ['\\\server\share', 'My Documents']],
58 $this->assertCalls($calls, $this->H->calls);