Module Uttk::<
In: lib/uttk/generators/templates/unit_test.rb

Methods

setup   teardown   test_xxx   test_yyy  

Public Instance methods

Methods

[Source]

# File lib/uttk/generators/templates/unit_test.rb, line 18
        def setup
          super
          # ...
        end

[Source]

# File lib/uttk/generators/templates/unit_test.rb, line 23
        def teardown
          super
          # ...
        end

Tests

[Source]

# File lib/uttk/generators/templates/unit_test.rb, line 32
        def test_xxx
          # ...
        end

[Source]

# File lib/uttk/generators/templates/unit_test.rb, line 36
        def test_yyy
          # ...
        end

[Validate]