庄生晓梦

庄生晓梦迷蝴蝶

博客园 首页 新随笔 联系 订阅 管理

2013年11月19日 #

摘要: tanyuanji@126.com 版本历史----使用 Mockito 进行测试 该教程主要讲解 Mockito 框架在Eclipse IDE 中的使用目录 tanyuanji@126.com1 使用 Mockito 进行测试1 1.需求知识2 2.使用 存根(Stub) 和 模拟对象(Mock Object) 进行测试2 2... 阅读全文
posted @ 2013-11-19 20:15 qwop 阅读(11613) 评论(0) 推荐(0) 编辑

摘要: tanyuanji@126.com 版本历史JUnit 该教程主要讲解 JUnit 4.x 版本的使用,以及如何在Eclipse IDE 中如何使用JUnit 目录 tanyuanji@126.com1 1.Junit介绍3 1.1.简介3 2.JUnit 优点3 2.1.对于极限编程而言3 2.2.对于重构而言3 ... 阅读全文
posted @ 2013-11-19 13:36 qwop 阅读(7533) 评论(0) 推荐(4) 编辑

摘要: 这是一个测试! 阅读全文
posted @ 2013-11-19 13:35 qwop 阅读(213) 评论(0) 推荐(1) 编辑

2013年10月16日 #

摘要: http://qwop.iteye.com/blog/1958761 // lodsb.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include /***********************************************... 阅读全文
posted @ 2013-10-16 11:15 qwop 阅读(511) 评论(0) 推荐(0) 编辑

2012年9月25日 #

摘要: public static int binarySearch( int array[], int value ) { if ( null == array ) return -1; int low = 0, high = array.length - 1, middle = -1; while ( low array[ middle ] ) { low... 阅读全文
posted @ 2012-09-25 14:10 qwop 阅读(226) 评论(0) 推荐(0) 编辑

摘要: CREATE DATABASE DATA_NAME drop database database_name create table person ( lastname varchar, firstname varchar, address varchar, age int ) alter tale table_name add column_name ... 阅读全文
posted @ 2012-09-25 13:56 qwop 阅读(314) 评论(0) 推荐(0) 编辑

2012年6月14日 #

摘要: 每周有特色的项目:6月11日 本周再次我们沉重的游戏,有三个特色游戏。 一如既往,我们非常自豪我们的项目,并鼓励你看看他们。 • amsn的 MSN兼容的Messenger应用程序非常不错,amsn的使者,是一个多MSN信使克隆的。 很像其Windows基于对口。 适合那些尚未见过光的朋友保持联系。 工程在Linux • 过程黑客 过程中的黑客是一个自由... 阅读全文
posted @ 2012-06-14 19:28 qwop 阅读(147) 评论(0) 推荐(0) 编辑

摘要: 精选项目,6月4日的一周 这个星期,我们具有更多的技术人员为重点的项目,包括几个安全应用程序和开发工具。 并一如既往,还有几个组合中的游戏。 非常感谢所有这些项目在SourceForge社区的一部分。 • Endian的防火墙社区 Endian的防火墙是一个“交钥匙”的Linux安全,变成一个全功能的安全设备,每个系统的分布。 它具有状态包过滤,代理服务器... 阅读全文
posted @ 2012-06-14 19:25 qwop 阅读(167) 评论(0) 推荐(0) 编辑

2012年6月3日 #

摘要: // Explicit.cpp : Defines the entry point for the console application. // 详解explicit关键字 #include "stdafx.h" #include #include using namespace std; int obj_cnt = 0; class Person { pub... 阅读全文
posted @ 2012-06-03 21:43 qwop 阅读(536) 评论(0) 推荐(0) 编辑

摘要: // object_static_002.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include using namespace std;class C1 {public: C1() { cout << "c1构造" << endl; } C1( char* name ) { cout << name << "构造" << endl;} ~C1() { co 阅读全文
posted @ 2012-06-03 16:07 qwop 阅读(174) 评论(0) 推荐(0) 编辑