Rx\TimestampedTest::testNotEqualWithScalar PHP Method

testNotEqualWithScalar() public method

    public function testNotEqualWithScalar()
    {
        $ts1 = new Timestamped(123, "Hi");
        $ts2 = new Timestamped(123, "Hello");
        $this->assertTrue(!$ts1->equals($ts2));
    }