Longman\TelegramBot\Tests\Unit\ConversationTest::testConversationThatDoesntExistPropertiesSetCorrectly PHP 메소드

testConversationThatDoesntExistPropertiesSetCorrectly() 공개 메소드

    public function testConversationThatDoesntExistPropertiesSetCorrectly()
    {
        $conversation = new Conversation(123, 456);
        $this->assertAttributeEquals(123, 'user_id', $conversation);
        $this->assertAttributeEquals(456, 'chat_id', $conversation);
        $this->assertAttributeEquals(null, 'command', $conversation);
    }