aboutsummaryrefslogtreecommitdiffstats
path: root/tests/phpunit/opencart/admin/controller/extension/ModificationTest.php
blob: d4d02218b5091c7eb981694175fa07e35f4ce8ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

class AdminControllerExtensionModificationTest extends OpenCartTest {
	
	/**
	 * @before
	 */
	public function setupTest() {
	}
	
	public function testIndex() {
		$this->request->server['REQUEST_METHOD'] = 'GET';
		$out = $this->dispatchAction("extension/modification")->getOutput();
	}
}