Skip to main content

Home/ softwaretest/ Group items tagged lesson

Rss Feed Group items tagged

swan lin

rubylearning.com :: View topic - Important: Read This First - 0 views

  • Objective: To get you up-to-speed in Core Ruby programming. Learning and asking questions as a group 'jump-starts' the Ruby learning process.
    • swan lin
       
      ruby lesson index
swan lin

rubylearning.com :: View topic - Lesson 1 - 0 views

  • We shall be referring to the documentation here - http://www.ruby-doc.org/core/
  • Constants begin with capital letters. Example PI, Length
swan lin

软件测试知识角 - 0 views

shared by swan lin on 04 Jul 07 - Cached
  • 一、自动化测试类:1、软件自动化测试:引入、管理与实施Automated Software Testing Introduction,Management,and Performance2、软件测试自动化技术与实例详解Software Test Automation3、高效软件测试自动化Effective Software Test Automation4、图形用户界面测试自动化 Effective GUI Test Automation5、软件测试自动化Just Enough Software Test Automation6、软件工程与软件测试自动化教程二、Web应用测试类:1、Web安全测试 Testing Web Security:Assessing the Security of Web Sites and Applications2、Web应用测试Testing Application on the Web:Test Planning for Internet-Based Systems 3、Web应用测试(第二版) Testing Applications on the Web: Test Planning for Mobile and Internet-Based Systems, Second Edition4、Web测试指南The Web Testing Companion: The Isider's Guide to Efficient and Effective Tests三、软件测试基础类:1、软件测试(原书第2版)Software Testing A Craftsmaj's Approach(Second Edition)2、软件测试Software Testing3、面向对象的软件测试A Practical Guide to Testing Object Oriented Software4、软件测试与质量管理5、计算机软件测试(原书第2版)Testing Computer Software,Second Edition6、实用软件测试过程Testing IT:An Off-the-Shelf Software Testing Process7、软件质量和软件测试Software Quality and Software Testing in Internet Times8、系统的软件测试Systematic Software Testing9、软件子系统测试The Craft of Software Testing:Subsystem Testing,Including Object-Based and Object-Oriented Testing10、面向对象系统的测试 Testing Object-Oriented System:Models,Patterns,and Tools11、软件测试技术概论12、软件β测试Beta Testing for Better Software四、软件测试应用类:1、有效软件测试Effective Software Testing 2、实用软件测试方法与应用3、软件测试:经验与教训Lessons Learned in Software Testing4、软件测试入门Introducing Software Testing5、实用软件测试指南How to Break Software A Practical Guide to Testing6、软件评估:基准测试与最佳实践 Software Assessments,Benchmarks,and Best Practices7、嵌入式软件测试Testing Embedded Software8、软件测试求生法则Surviving the Top Ten Challenges of Software Testing : A People-Oriented Approach9、软件测试:过程改进Software Testing in the Real World Improving the Process10、快速测试Papid Testing11、软件测试的有效方法(原书第2版)Effective Methods for Software Testing,Second Edition12、网络测试深入解析五、单元测试类:1、单元测试之道Java版——使用Junit Pragmatic Unit Testing:In Java with JUnit 2、测试驱动开发(中文版)Test-driven development:by example3、单元测试之道C#版——使用Nunit Pragmatic Unit Testing:In C# with NUnit4、测试驱动开发——实用指南 Test Driven Development: A Practical Guide5、软件测试与Junit实践六、性能测试类1、2EE性能测试J2EE Performance Testing With BEA WebLogic Server2、Microsoft .NET Web应用程序性能测试Performance Testing Microsoft .NET Web Applications七、软件安全测试类:1、黑客攻击测试篇Hack Attacks Testing:How to Conduct Your Own Security Audit2、Web安全测试 Testing Web Security:Assessing the Security of Web Sites and Applications八、测试管理类:1、测试流程管理Managing the Testing Process2、软件测试过程管理(原书第2版)Managing the Testing Process(Second Edition)九、软件测试培训类:1、软件测试员培训教材2、软件测试实用指南
swan lin

Fun with Strings: Ruby Study Notes - Best Ruby Guide, Ruby Tutorial - 0 views

  • does not have anything in it at all; we call that an empty string.
  • n Ruby, strings are mutable. They can expand as needed, without using much time and memory. Ruby stores a string as a sequence of bytes.
  • The command output string is sent to the operating system as a command to be executed
  • ...1 more annotation...
  • puts 'It\'s my Ruby' 
    • swan lin
       
      \ 的作用相当于一个 '
swan lin

Numbers in Ruby: Ruby Study Notes - Best Ruby Guide, Ruby Tutorial - 0 views

  • Ruby integers are objects of class Fixnum or Bignum. The Fixnum and Bignum classes represent integers of differing sizes. Both classes descend from Integer (and therefore Numeric). The floating-point numbers are objects of class Float, corresponding to the native architecture's double data type.
swan lin

Ruby Features: Ruby Study Notes - Best Ruby Guide, Ruby Tutorial - 0 views

  • Free format
  • Case sensitive
  • Comments - Anything following an unquoted #, to the end of the line on which it appears, is ignored by the interpreter. Also, to facilitate large comment blocks, the ruby interpreter also ignores anything between a line starting with =begin and another line starting with =end
  • ...2 more annotations...
  • Statement delimiters
  • But in Ruby, all of these are true; in fact, everything is true except the reserved words false and nil.
swan lin

First Ruby Program: Ruby Study Notes - Best Ruby Guide, Ruby Tutorial - 0 views

  • Press the F8 key to open an output window
  • Ctrl+Shift+I - this opens the Indentation Settings window
  • All Ruby source files have the .rb file extension
  • ...13 more annotations...
  • Foo class has name foo.rb
  • puts (s in puts stands for string; puts really means put string)
  • g) > simply writes onto the screen whatever comes after it,
  • simply writes onto the screen whatever comes after it
  • a. Parentheses are usually optional with a method call. These calls are all valid:foobarfoobar()foobar(a, b, c)foobar a, b, c
  • everything from an integer to a string is considered to be an object
  • To use a method, you need to put a dot after the object, and then append the method name.
  • Some methods such as puts and gets are available everywhere and don't need to be associated with a specific object.
  • provided by Ruby's Kernel module
  • When you run a Ruby application, an object called main of class Object is automatically created. This object provides access to the Kernel methods.
  • String literals are sequences of characters between single or double quotation marks
  • I am using single quotes around Hello. ' is more efficient than "
  • Ruby is an interpreted language
swan lin

Ruby Installation: Ruby Study Notes - Best Ruby Guide, Ruby Tutorial - 0 views

  • Yukihiro Matsumoto, commonly known as 'Matz' created the Ruby language in 1993
swan lin

LinuxDevCenter.com -- An Interview with the Creator of Ruby - 0 views

  • Ruby has been described as an absolutely pure object-oriented scripting language and a genuine attempt to combine the best of everything in the scripting world.
  • Yukihiro Matsumoto (or "Matz" as he's known online) is the creator of Ruby
1 - 11 of 11
Showing 20 items per page