We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e79e5b commit d1cf36bCopy full SHA for d1cf36b
tests/Unit/UpstreamTest.php
@@ -0,0 +1,10 @@
1
+<?php
2
+
3
+use UnitPhpSdk\Config\Upstream;
4
5
+test('Upstream object can be created', function () {
6
+ $upstream = new Upstream('test');
7
+ $upstream->setServer('127.0.0.1');
8
9
+ expect($upstream)->toBeObject();
10
+});
0 commit comments