1.入門php
https://netbeans.org/kb/trails/php_zh_CN.htmlhtml
NetBeans是開源軟件開發集成環境,是一個開放框架,可擴展的開發平臺,能夠用於Java、C/C++,PHP等語言的開發,自己是一個開發平臺,能夠經過擴展插件來擴展功能。web
2.搭環境apache
軟件,插件等參照 文件中的NetBeans.rarwindows

前提:wamp server環境OK瀏覽器
準備谷歌自由版(netbeans插件ok)框架
a.首先必須先安裝jdk-8u40-nb-8_0_2-windows-x64.exe工具
b.安裝netbeans-8.0.2-windows.exe測試
c.將如下3個插件放在wamp\bin\php\php5.5.12 目錄中ui

更新wamp\bin\php\php5.5.12\zend_ext\php_xdebug的dll文件版本
d.設置電腦環境變量
e.安裝pear(規範你的代碼,並便於往後快速生成文檔)
在管理員權限下運行,運行後,會生成對應文件及文件夾
D:\wamp\bin\php\php5.5.12\php.ini
中自動插入path路徑
f.追加pear環境變量
g.修改2個文件夾中的php.ini文件
1)wamp\bin\php\php5.5.12\php.ini
能夠變更下pear文件的存放位置
修改php_xdebug文件名字
添加如下內容
xdebug.remote_enable=on
xdebug.remote_handler=dbgp
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.auto_trace=1
xdebug.collect_params=1
xdebug.collect_return=1
xdebug.trace_output_dir="d:/wamp/xdebug/trace"
xdebug.profiler_enable=1
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir="d:/wamp/xdebug/profiler"
2)wamp\bin\apache\apache2.4.9\bin\php.ini
一樣
3.啓動wampserver的服務
打開netbeans軟件
文件-新建項目
下一步
下一步
完成
工具-選項-常規
web瀏覽器-編輯
添加新的瀏覽器,使用文件夾中的谷歌自由版,裏面有netbeans相關插件
選項-PHP-常規
添加解析器
框架和工具
選擇phpunit,添加phpunit腳本和框架生成器腳本
4.建立完項目後,修改屬性-測試,phpunit打勾
5.選中某個源文件中的須要測試的php文件,單擊右鍵「工具」-「建立測試」,輸入測試文件存放目錄
生成xxxtest.php文件,修改代碼,執行測試任務
6.舉例
源文件test.php
----------------------------------------
<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
* Description of Sample
*
* @author sicnco
*/
class Sample {
//put your code here
public function Get($a)
{
if($a==1)
{
return 'ok:'.$a;
}
else
{
return 'ng:'.$a;
}
}
}
--------------------------------------
修改後的測試文件testtest.php
<?php
require_once '../test.php';
<------這一行須要手動添加
/**
* Generated by PHPUnit_SkeletonGenerator on 2015-03-27 at 03:50:41.
*/
class SampleTest extends PHPUnit_Framework_TestCase {
/**
* @var Sample
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp() {
$this->object = new Sample;
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown() {
}
/**
* @covers Sample::Get
* @todo Implement testGet().
*/
public function testGet() {
$rlt = $this->object->Get(1);
<----須要寫代碼,驗證
$this->assertEquals($rlt, 'ok:1');
<----驗證代碼運行結果
}
}
點擊測試文件testtest.php右鍵,選中「運行」,查看測試結果