dwoodauto-ding-notice/tests/Feature/TextTest.php

53 lines
1.2 KiB
PHP
Raw Normal View History

2023-04-12 15:05:18 +08:00
<?php
namespace DingNotice\Tests\Feature;
use DingNotice\SendClient;
use DingNotice\Tests\TestCase;
class TextTest extends TestCase
{
public function __construct($name = null, array $data = [], $dataName = '')
{
parent::__construct($name, $data, $dataName);
$this->setUp();
}
/**
* available content to set
* @param $content
* @return bool
* @author wangju 2019-05-17 21:50
*/
protected function matchContent($content)
{
$text = $content['content'];
return !empty($text);
}
/**
* A basic test example.
*
* @return void
*/
public function testPushTextMessage()
{
$result =$this->ding->text("我就是我,@{$this->testUser} 是不一样的烟火");
$this->assertSame([
'errmsg' => 'ok',
'errcode' => 0
],$result);
}
public function testPushTextMessageAtAllUser(){
$result =$this->ding
->at([],true)
->text("我就是我,@{$this->testUser} 是不一样的烟火");
$this->assertSame([
'errmsg' => 'ok',
'errcode' => 0
],$result);
}
}