1
0
Fork 0
mirror of https://github.com/ruby-opencv/ruby-opencv synced 2023-03-27 23:22:12 -04:00
ruby-opencv/test/test_mouseevent.rb

18 lines
377 B
Ruby
Raw Normal View History

2011-05-04 11:59:55 -04:00
#!/usr/bin/env ruby
# -*- mode: ruby; coding: utf-8-unix -*-
require 'test/unit'
require 'opencv'
require File.expand_path(File.dirname(__FILE__)) + '/helper'
include OpenCV
include GUI
# Tests for OpenCV::MouseEvent
class TestMouseEvent < OpenCVTestCase
def test_initialize
assert_not_nil(MouseEvent.new)
assert_equal(MouseEvent, MouseEvent.new.class)
end
end