1
vote
0answers
28 views

phpunit assert that the element has a value

I'm using phpunit for the Yii framework. Tried creating a functional test. How to test that the existing element or label has a value. I have read that ...
0
votes
1answer
138 views

Zend PHPUnit testing a model, asserting a Zend_Exception indeed occurs as expected

Consider the following code in a model. the function deleteUser(NULL) will trigger an exception. class Model_UserModel extends Zend_Db_Table_Abstract{ protected $_name = 'users'; protected ...
1
vote
2answers
358 views

HowTo PHPUnit assertFunction

I was wondering if how I can verify if a 'class' has a Function. assertClassHasAttribute does not work, it's normal since a Function is not an Attribute. Thanks!
5
votes
2answers
361 views

phpunit custom asserts help needed

I'm trying to add a custom assert to phpunit, following this tutorial, to validate complex numbers returned as a string (e.g. "-123+456i" by the method that I'm testing) to a defined precision ...
0
votes
2answers
503 views

How to handle a failed PHP assertion with PHPUnit?

I have an assertion in my code. Something like: assert('is_string($var)'); If I write a test for PHPUnit that causes this assertion to fail with the message, Warning: assert(): Assertion ...
13
votes
3answers
3k views

PHPUnit assert that an exception was thrown?

Does anyone know whether there is an assert or something like that which can test whether an exception was thrown in the code being tested? Thank you in advance.
1
vote
2answers
895 views

phpUnit - assertQuery fails with

I am having trouble with an assertQuery(). In the html I have (verified by outputting the body) <input type="text" name="LASTNAME" id="LASTNAME" value="" maxlength="25" size="20" /> So I ...
13
votes
6answers
5k views

PHPUnit: assert two arrays are equal, but order of elements not important

What is a good way to assert that two arrays of objects are equal, when the order of the elements in the array is unimportant, or even subject to change?
2
votes
4answers
230 views

PHP and unit testing assertions with decimals

I have a method that returns a float like 1.234567890.I want to test that it really does so. However, it seems that this returned float has different precision on different platforms so how do I ...