二个月实习结束

原定计划两个半月的实习因为姐姐结婚提前半个月结束了 明天是最后一天,然后要一大早赶飞机,希望不会出意外的 总结下这两个月的收获: 总的感觉是没给公司做任何贡献 training了六周、闲了两周 学到的主要是一些QA Basic knowledge和一些自动化测试工具的基本使用(见附录一)。 For example, testing method, testing process, test type等等 关于实习工资,比较来说还是不错的 关于公司的人,感觉都挺友好的,特别是我们的一些trainer还有SDM R和G. 虽然至今也没给我分项目,也没给人解释原因 还好就要走了,不然整天担心着这样闲着迟早被Fired掉还是挺难受的 说到这个,有点不明白公司招那么多人干嘛,已经进来的人都闲着了 7月份要过来的那批人不是会更闲 管理上还是存在问题的! 仅仅两个月已经觉得测试工作有点单调了 不过在真正掌握这门技术之前是绝对不可以说无聊的 要学的还有很多很多

关于以后的路

今天坐着坐着又想到了 想了很多一只熊说过的话 想着出国的事 专业,到底哪个专业适合自己,哪个专业以后好就业 申请材料,要花多少时间去写好了,而且因为不是学生了,上班周一至周五没时间要办的话可能也会困难重重 雅思 难度应该不会太大,但依然没有把握 奖学金 我想去英国读硕的话,奖学金的机会应该是很少很少的, 至于其它国家,机会可能多一点,但是去到一个没有一只熊的地方我宁愿在国内无聊地呆着 一直就这样没有乐观因子 一直就这样不自信 对于雅思没考过,双学位没考上心里还一直残留着阴影,挥之不去

关于爱情

也许真像一只熊说的,一直是我自己在挑剔自己,给自己压力 真的很想做你的perfect girl. 所以每每发现自己的缺点或是无力后反倒怪亲爱的没给我希望和信心了 不过偶尔幻想在伦敦和亲爱的一起学习生活 幸福得能让人从梦中甜醒:) 原谅我总是爱幻想而对实际行动的恐惧

下次再上班就开始真正的独立生活了 要学习,要思考,要努力,要坚强

附录一: JUnit JUnit 核心框架十分简单  JUnit 的目的是协助进行单元测试(Unit Test)。 JUnit 的测试主要由 TestCase、TestSuit 与 TestRunner 三部份来完成測試 使用上的架构简单明了。 Major concepts in JUnit: Test case Test suite Setup / teardown Assertion Success / Failure / Error

============================================================================= Watij Watij (Web Application Testing In Java) is a pure Java API created to allow for the automation of web applications through a real browser. 1. Download from: http://www.watij.com/ 2. Unzip it 3. Double click the launchWatijBeanShell.bat 或者copy the watij.jar and all the .jar files in lib to the classpath of one project in Eclipse. 在project上右键单击-->properties--->Java Build Path--->Libraries选项卡--在project上右键单击-->properties--->Java Build Path--->Libraries选项卡--->add JARS or Add External JARS. (最好在存放项目的地方新建一个文件夹lib,把所有要import的jar文件放在里面。) 4. Automate test cases. 简单的一个应用参见:http://read.woshao.com/223870.html Watij API: http://watij.sourceforge.net/docs/api/index.html?watij/IE.html ============================================================================== JMeter JMeter 是用來测试负载的工具 可以模拟多使用者连线应用程式的行为。 JMeter user manual: http://jakarta.apache.org/jmeter/index.html 1. Download JMeter from: http://jakarta.apache.org/jmeter/ 2. Unzip it 3. JMeter-->bin-->双击jmeter.bat 4. 右键单击Test Plan-->add-->Thread Group 可以改变Thread Group 的名字如Baidu,可以设置Thread Properties。如模拟用户数为100 准备时间Ramp-Up Period为1second,loop为3等等。 5. 在新建的Thread Group下单击-->add-->Config Element-->HTTP Request default. 6. 设置参数 如Server Name or IP:www.baidu.com. Port Number 为80。Protocol为HTTP。etc. 7. 为Thread Grou添加各种Listener. 8. 右击 WorkBench(工作台)选择Add-->Non-Test Elements-->HTTP Proxy Server 9. 配置参数。     注意9.1. HTTP Proxy Server的Port必须和浏览器选项里配置的端口一样。             9.2. 选择Target Controller             9.3. 只有在点击HTTP Proxy Server的Start按扭以后才能在浏览器中打开网页。 ============================================================================= HttpUnit HttpUnit虽然也有Unit的名字 但它本身並不是测试工具 所谓不是测试工具的意思是 它不提供任何的测试或断言方法 正确来说 它是测试時的辅助工具。 1. Download HttpUnit from: http://httpunit.sourceforge.net/ 2. Unzip it 3. Copy the HttpUnit.jar and all the .jar files in lib to the classpath of one project in Eclipse. 在project上右键单击-->properties--->Java Build Path--->Libraries选项卡--->add JARS or Add External JARS. (最好在存放项目的地方新建一个文件夹lib,把所有要import的jar文件放在里面。) 4. Automate test cases. (似乎API 和User Manual都没有在线的 在下载的httpunit包中有。 ============================================================================= Ant( Another neat tool) Ant user Manual: http://ant.apache.org/manual/index.html 参考资料:http://www-128.ibm.com/developerworks/cn/java/j-ant/index.html

<?xml version="1.0" encoding="UTF-8"?> <project name="project name" default="result" basedir=".">          <target name="result">   <junit printsummary="yes">    <classpath>     <pathelement path="${classpath}" />     <pathelement location="bin" />     <fileset dir="lib">      <include name="**/*.jar" />     </fileset>    </classpath>    <formatter type="xml" />                         <!--test name="test.TestCalculator" todir="report3" /-->    <batchtest todir="report">     <fileset dir="bin">      <include name="**/*Test*.class" />     </fileset>    </batchtest>   </junit>   <junitreport todir="report">     <fileset dir="report">       <include name="TEST*.xml"/>     </fileset>     <report format="frames" todir="${html.report3.dir}"/>   </junitreport>  </target> </project>

project项目, target目标, 任务 ============================================================================= TestLink 参见blog 注意TestLink中的Test Plan与QA Leader designed的那个Test Plan是两个不同的概念。Test Link中是指Test Cycle的意思。 一般一个Test Plan对应一个build version以方便管理。 Tricia's refer: 1. Copy "testlink" folder to "xampp-->htdocs folder. 2. Change "xampp" in "htdocs" folder to another name, anyone is ok. 3. Open appache->conf->http.con, on the 53th line, change listen:80 to listen:8080. 4. Double click apache_start.bat. 5. Open http://127.0.0.1:8080/. and click testlink. 6. Htdocs->testlink->install change install to another name, anyone is ok. 7. Login in with admin as the username and password. 8. Change your password.

============================================================================

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值