随笔分类 -  SoapUI Training Videos

1 2 下一页

[SoapUI] SoapUI学习视频地址
摘要:http://www.soapui-tutorial.com/ 阅读全文

posted @ 2017-08-07 16:22 张缤分 阅读(198) 评论(0) 推荐(0) 编辑

[Training Video - 7] [Database connection] Part 1
摘要:try, catch and finally in db connectionForming groovy connection string and obtaining Connection ObjectFiring Select Query and obtaining resultsForeac... 阅读全文

posted @ 2015-10-08 14:28 张缤分 阅读(171) 评论(0) 推荐(0) 编辑

[Training Video - 2] [Groovy Introduction]
摘要:Building test suites, Test cases and Test steps in SOAP UI Levels : test step level test case level test suite level project levelGroovy script ... 阅读全文

posted @ 2015-10-08 12:32 张缤分 阅读(400) 评论(0) 推荐(0) 编辑

[Training Video - 1] [Introduction to Web services]
摘要:What is a web service?http://webservicex.net/ws/default.aspxWebService是一种跨编程语言和跨操作系统平台的远程调用技术。跨编程语言 : 服务端程序采用java编写,客户端程序则可以采用其他编程语言编写,反之亦然!跨操作系统平台 : ... 阅读全文

posted @ 2015-10-08 10:40 张缤分 阅读(388) 评论(2) 推荐(0) 编辑

[Training Video - 5] [Groovy Script Test Step - Collections, Exceptions] Exception Handling in groovy
摘要:def x = new String[3]x[0] = "A"x[1] = "B"x[2] = "C"log.info"XXXXXX 1"try{ x[3] = "D"// def z=9/0}catch(Exception e){ log.info "Some error "+e.getMessa... 阅读全文

posted @ 2015-10-06 21:54 张缤分 阅读(286) 评论(0) 推荐(0) 编辑

[Training Video - 4] [Groovy] Object equality and variable equality check
摘要:def x=2def y=3if(x == y){ log.info "equal"}else{ log.info "not equal" // print out not equal}TestService s1 = new TestService()TestService s2 = ne... 阅读全文

posted @ 2015-10-06 21:10 张缤分 阅读(180) 评论(0) 推荐(0) 编辑

[Training Video - 4] [Groovy] Initializing log inside class with constructor
摘要:TestService s = new TestService(log,context,testRunner)s.xyz()class TestService{ def log def context def testRunner public TestService(log,context,te... 阅读全文

posted @ 2015-10-06 20:56 张缤分 阅读(188) 评论(0) 推荐(0) 编辑

[Training Video - 4] [Groovy] Constructors in groovy, this keyword
摘要:Bank.log = logBank b1 = new Bank()b1.name = "BOA"b1.minbalance = 100b1.city="London"Bank b2 = new Bank()b2.name = "HSBC"b2.minbalance = 100b2.city="LA... 阅读全文

posted @ 2015-10-06 19:54 张缤分 阅读(197) 评论(0) 推荐(0) 编辑

[Training Video - 4] [Groovy] Optional parameter in groovy
摘要:Employee.log=logEmployee e1 = new Employee()log.info e1.add(1,2,3,4)// optional parameters in groovylog.info e1.add(2,3)log.info e1.add(2,3,10)class E... 阅读全文

posted @ 2015-10-06 19:33 张缤分 阅读(228) 评论(0) 推荐(0) 编辑

[Training Video - 4] [Groovy] Function in detail
摘要:Employee.log=logEmployee e1 = new Employee()Employee e2 = new Employee()e1.name = "A"e1.salary = 100e2.name = "B"e2.salary = 200e1.printName()e2.print... 阅读全文

posted @ 2015-10-06 19:28 张缤分 阅读(172) 评论(0) 推荐(0) 编辑

[Training Video - 3] [Groovy in Detail] Non-static and Static functions, initializing log inside class
摘要:log.info "starting"// we use class to create objects of a classPlanet p1 = new Planet()Planet p2 = new Planet()//Planet.name = "Pluto" illegalPlanet... 阅读全文

posted @ 2015-10-06 17:46 张缤分 阅读(263) 评论(0) 推荐(0) 编辑

[Training Video - 3] [Groovy in Detail] Non-static and Static variables, objects and object referances
摘要:log.info "starting"// we use class to create objects of a classPlanet p1 = new Planet()Planet p2 = new Planet()Planet p3 = new Planet()//Planet.name ... 阅读全文

posted @ 2015-10-06 16:30 张缤分 阅读(182) 评论(0) 推荐(0) 编辑

[Training Video - 3] [Groovy in Detail] What is a groovy class ?
摘要:log.info "starting"// we use class to create objects of a classPlanet p1 = new Planet()Planet p2 = new Planet()Planet p3 = new Planet()p1.name = "ear... 阅读全文

posted @ 2015-10-06 16:23 张缤分 阅读(203) 评论(0) 推荐(0) 编辑

[Training Video - 3] [Groovy in Detail] Groovy Offical URL
摘要:http://www.groovy-lang.org/ 阅读全文

posted @ 2015-10-06 16:02 张缤分 阅读(119) 评论(0) 推荐(0) 编辑

[SoapUI] JsonPath is to JSON what XPath is to XML
摘要:1.通过JsonUtil验证Json的有效性2.两种方式通过JPath读取Json的内容 阅读全文

posted @ 2015-08-31 13:38 张缤分 阅读(248) 评论(0) 推荐(0) 编辑

[SoapUI] Context is per test case, every test case has a different context
摘要: 阅读全文

posted @ 2015-08-23 16:34 张缤分 阅读(147) 评论(0) 推荐(0) 编辑

[SoapUI] Global Scripts For Reusability
摘要: 阅读全文

posted @ 2015-08-21 16:19 张缤分 阅读(214) 评论(0) 推荐(0) 编辑

[SoapUI] DataSource, DataSourceLoop, DataSink
摘要:Script assertion in login: 阅读全文

posted @ 2015-08-21 16:09 张缤分 阅读(453) 评论(0) 推荐(0) 编辑

[SoapUI] Loop a test with different sets of data
摘要: 阅读全文

posted @ 2015-08-20 17:50 张缤分 阅读(286) 评论(0) 推荐(0) 编辑

[Training Video - 7] [Database connection] Various databases which are supported, Drivers for database connection, SQL Groovy API
摘要:Various databases which are supportedDrivers for database connectiongroovy.sql.Sql packageSoapUI怎样支持对数据库的操作Various databases which are supportedGroovy... 阅读全文

posted @ 2015-06-20 15:13 张缤分 阅读(313) 评论(0) 推荐(0) 编辑

1 2 下一页

导航

点击右上角即可分享
微信分享提示