Tes-unitt data initialization method in Ruby

Source: Internet
Author: User

when testing with Ruby, there are a lot of times when you need some sort of data initialization and a post-mortem restore of the data, and these methods are sorted out below.
Require "Test/unit"

class Testanion <test::unit::testcase
#用例执行前只执行一遍初始化数据
def Self.startup
anion= ' startup '
puts anion
End
#用例执行后只执行一遍初始化数据
def Self.shutdown
puts "shutdown"
End
#每一执行一个用例之前执行
def setup
puts "Setup"
End
#每执行一个用例之后执行
def teardown
puts "teardown"
End
#case
def Test_01_fir
puts "first"
End
def test_02_sec
puts "second"
End
End

Tes-unitt data initialization method in Ruby

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.