0
votes
2answers
127 views

Assert File not validating

I have followed the instructions on the documentation for how to handle file upload using Doctrine. Image upload works fine but when I upload some other file type, it just lets the file upload even ...
0
votes
1answer
31 views

Improve assertions

I would like to improve the precondition assertions: function foo($bar) { if($bar === null) { return; } // do stuff } The better solution is the g_return_if_fail and ...
1
vote
2answers
118 views

Regex: Workaround for PHP's look-behind fixed-length assert limitation

Good afternoon, all. I'm trying to understand more about look-around asserts and I found this thread, where their solution is supposed to work in some engines but not PHP's, because of PHP's ...
-5
votes
2answers
46 views

Add numbers into a PHP Array [closed]

I want to store numbers in an array not beyond 20. I want a function to add the numbers with a for loop to iterate over the numbers. I want to just use the assert method to run tests on the numbers. I ...
1
vote
1answer
75 views

assert performance on production/release server

I'm wondering if there's any performance faulting caused by using 'assert' when ASSERT_ACTIVE is set to 0 (assert_options(ASSERT_ACTIVE, 0);. For example, if I have a huge project with lots of ...
0
votes
1answer
266 views

assert() showing Warning in php 5.3.1

I am using sphinx 0.9.8 version. My php version is 5.3.1. After integrating sphinx api I am getting some warning regarding assert(). How can I fix that issue? Any body can help me? Thanks
0
votes
1answer
44 views

Is there a PHP equivalent for Groovy's Power Asserts?

Is there a PHP equivalent for Groovy's Power Asserts?
1
vote
2answers
362 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
364 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
506 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 ...
10
votes
7answers
649 views

assert dilemma in unit testing class

I would like to use PHP's assert function in my unit testing framework. It has the advantage of being able to see the expression being evaluated (including comments) within the error message. The ...
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
897 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 ...
0
votes
1answer
165 views

Assert or exit/die for checking headers_sent() in PHP?

I am writing a PHP class for generation of HTML output. For security reasons, I need to ensure that no code has sent output before this class does. Here are the two options I thought of: Option 1: As ...
18
votes
4answers
2k views

Should I be using assert in my PHP code?

A co-worker has added the assert command a few times within our libraries in places where I would have used an if statement and thrown an exception. (I had never even heard of assert before this.) ...
2
votes
1answer
120 views

php numbers: assert( 1.0 < 2.0 )

How can this <?php assert( 1.0 < 2.0 ); ?> result in Warning: assert() [function.assert]: Assertion failed in C:\Program Files (x86)\wamp\www\test.php on line 2 Edit: depending on the ...
1
vote
3answers
224 views

What does this mean in php.ini?

assert.active = On assert.bail = Off How does it work?
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 ...
2
votes
2answers
639 views

Can someone give me a good reason for why assert in php behaves the way it does?

PHP's assert statement doesn't behave like most other languages. assert('return false'); actually evaluates the string and then asserts its result (false). Instead of comparing the paramter to true, ...