summaryrefslogtreecommitdiff
path: root/FreeRTOS-Plus/Test/CMock/vendor/behaviors/test/tasks_test/test/user_test.rb
blob: ad3cd1b33e05bc60d35f0cb8a60674cdcfd99389 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'test/unit'
require 'behaviors'

require 'user'

class UserTest < Test::Unit::TestCase
  extend Behaviors

  def setup
  end

  should "be able set user name and age during construction"
  should "be able to get user name and age"
  should "be able to ask if a user is an adult"
  def test_DELETEME
  end
end