Skip to content

Commit 212f6ff

Browse files
committed
test: view tests
1 parent 3416a15 commit 212f6ff

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

src/View/BaseView.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Gt\WebEngine\View;
2+
namespace GT\WebEngine\View;
33

44
use Psr\Http\Message\StreamInterface;
55

src/View/HTMLView.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Gt\WebEngine\View;
2+
namespace GT\WebEngine\View;
33

44
use Gt\Dom\HTMLDocument;
55

src/View/JSONView.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
<?php
2-
namespace Gt\WebEngine\View;
2+
namespace GT\WebEngine\View;
33

4+
/**
5+
* This file is just stubbed out for now, and does not need unit tests writing
6+
* for it until the structured object document feature is planned out properly.
7+
*/
48
class JSONView extends BaseView {
59
public function createViewModel():JSONDocument {
610
// TODO: Implement createViewModel() method.

src/View/NullView.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
<?php
2-
namespace Gt\WebEngine\View;
2+
namespace GT\WebEngine\View;
33

4+
/**
5+
* This file is just stubbed out for now, and does not need unit tests writing
6+
* for it until the structured object document feature is planned out properly.
7+
*/
48
class NullView extends BaseView {
59
public function createViewModel():mixed {
610
// TODO: Implement createViewModel() method.

0 commit comments

Comments
 (0)