@brief is removed completely

This commit is contained in:
Michael 2020-01-19 06:05:23 +00:00
parent fd1f1999f0
commit 0a4119adaf
170 changed files with 901 additions and 962 deletions

View file

@ -9,12 +9,12 @@ use Friendica\Util\Arrays;
use PHPUnit\Framework\TestCase;
/**
* @brief Array utility testing class
* Array utility testing class
*/
class ArraysTest extends TestCase
{
/**
* @brief Tests if an empty array and an empty delimiter returns an empty string.
* Tests if an empty array and an empty delimiter returns an empty string.
*/
public function testEmptyArrayEmptyDelimiter()
{
@ -23,7 +23,7 @@ class ArraysTest extends TestCase
}
/**
* @brief Tests if an empty array and a non-empty delimiter returns an empty string.
* Tests if an empty array and a non-empty delimiter returns an empty string.
*/
public function testEmptyArrayNonEmptyDelimiter()
{
@ -32,7 +32,7 @@ class ArraysTest extends TestCase
}
/**
* @brief Tests if a non-empty array and an empty delimiter returns the value (1).
* Tests if a non-empty array and an empty delimiter returns the value (1).
*/
public function testNonEmptyArrayEmptyDelimiter()
{
@ -41,7 +41,7 @@ class ArraysTest extends TestCase
}
/**
* @brief Tests if a non-empty array and an empty delimiter returns the value (12).
* Tests if a non-empty array and an empty delimiter returns the value (12).
*/
public function testNonEmptyArray2EmptyDelimiter()
{
@ -50,7 +50,7 @@ class ArraysTest extends TestCase
}
/**
* @brief Tests if a non-empty array and a non-empty delimiter returns the value (1).
* Tests if a non-empty array and a non-empty delimiter returns the value (1).
*/
public function testNonEmptyArrayNonEmptyDelimiter()
{
@ -59,7 +59,7 @@ class ArraysTest extends TestCase
}
/**
* @brief Tests if a non-empty array and a non-empty delimiter returns the value (1,2).
* Tests if a non-empty array and a non-empty delimiter returns the value (1,2).
*/
public function testNonEmptyArray2NonEmptyDelimiter()
{
@ -68,7 +68,7 @@ class ArraysTest extends TestCase
}
/**
* @brief Tests if a 2-dim array and an empty delimiter returns the expected string.
* Tests if a 2-dim array and an empty delimiter returns the expected string.
*/
public function testEmptyMultiArray2EmptyDelimiter()
{
@ -77,7 +77,7 @@ class ArraysTest extends TestCase
}
/**
* @brief Tests if a 2-dim array and an empty delimiter returns the expected string.
* Tests if a 2-dim array and an empty delimiter returns the expected string.
*/
public function testEmptyMulti2Array2EmptyDelimiter()
{
@ -86,7 +86,7 @@ class ArraysTest extends TestCase
}
/**
* @brief Tests if a 2-dim array and a non-empty delimiter returns the expected string.
* Tests if a 2-dim array and a non-empty delimiter returns the expected string.
*/
public function testEmptyMultiArray2NonEmptyDelimiter()
{
@ -95,7 +95,7 @@ class ArraysTest extends TestCase
}
/**
* @brief Tests if a 2-dim array and a non-empty delimiter returns the expected string.
* Tests if a 2-dim array and a non-empty delimiter returns the expected string.
*/
public function testEmptyMulti2Array2NonEmptyDelimiter()
{
@ -104,7 +104,7 @@ class ArraysTest extends TestCase
}
/**
* @brief Tests if a 3-dim array and a non-empty delimiter returns the expected string.
* Tests if a 3-dim array and a non-empty delimiter returns the expected string.
*/
public function testEmptyMulti3Array2NonEmptyDelimiter()
{