OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
firebase
/
vendor
/
google
/
gax
/
src
/
Testing
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/12/2024 10:34:01 AM
rwxr-xr-x
📄
GeneratedTest.php
3.89 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
MessageAwareArrayComparator.php
934 bytes
08/12/2024 10:34:00 AM
rw-r--r--
📄
MessageAwareExporter.php
1.32 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
MockBidiStreamingCall.php
5.69 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
MockClientStreamingCall.php
4.37 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
MockGrpcTransport.php
4.17 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
MockRequest.php
1.96 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
MockRequestBody.php
17.32 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
MockResponse.php
4.32 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
MockServerStreamingCall.php
3.61 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
MockStatus.php
1.99 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
MockStubTrait.php
11.13 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
MockTransport.php
4.18 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
MockUnaryCall.php
3.13 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
ProtobufGPBEmptyComparator.php
2.19 KB
08/12/2024 10:34:00 AM
rw-r--r--
📄
ProtobufMessageComparator.php
2.75 KB
08/12/2024 10:34:01 AM
rw-r--r--
📄
ReceivedRequest.php
2.62 KB
08/12/2024 10:34:01 AM
rw-r--r--
📄
SerializationTrait.php
2.56 KB
08/12/2024 10:34:01 AM
rw-r--r--
📄
mocks.proto
1.3 KB
08/12/2024 10:34:00 AM
rw-r--r--
Editing: ProtobufGPBEmptyComparator.php
Close
<?php /** * Copyright 2018 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ namespace Google\ApiCore\Testing; use Google\Protobuf\GPBEmpty; use Google\Protobuf\Internal\Message; use SebastianBergmann\Comparator\Comparator; use SebastianBergmann\Comparator\ComparisonFailure; /** * @internal */ class ProtobufGPBEmptyComparator extends Comparator { /** * Returns whether the comparator can compare two values. * * @param mixed $expected The first value to compare * @param mixed $actual The second value to compare * @return boolean */ public function accepts($expected, $actual) { return $expected instanceof GPBEmpty && $actual instanceof GPBEmpty; } /** * Asserts that two values are equal. * * @param Message $expected The first value to compare * @param Message $actual The second value to compare * @param float|int $delta The allowed numerical distance between two values to * consider them equal * @param bool $canonicalize If set to TRUE, arrays are sorted before * comparison * @param bool $ignoreCase If set to TRUE, upper- and lowercasing is * ignored when comparing string values * @throws ComparisonFailure Thrown when the comparison * fails. Contains information about the * specific errors that lead to the failure. */ public function assertEquals($expected, $actual, $delta = 0, $canonicalize = FALSE, $ignoreCase = FALSE) { // No need to do anything here. } }