Deve dava ile PHPUnit test yöntemleri adlandırma değil sonuçları nelerdir?

0 Cevap php

I PHPUnit ile birim testleri yazıyorum.

Ben şimdi 100 methods yazılı hakkında sahip.

Bu bir Kohana çerçeve uygulaması için olduğundan, ben its naming convention test yöntemleri için de, örneğin kullanılır:

function test_instance()
{
    ...
}

function test_config()
{
    ...
}

Bütün testler run fine Eclipse ve komut satırından.

Ancak, şimdi bir setup işlevini kullanın ve ismini verirken sadece çalışır fark etmek gerekir:

function setUp()
{
    ...
}

olup:

function set_up()
{
    ...
}

Now I am wondering if I will have any disadvantages down the road if I don't rename all of my PHPUnit methods so that they are camel case, e.g. do other tools that use PHPUnit excect the method names to be in camelcase notation?

0 Cevap