Show
Ignore:
Timestamp:
01/22/09 11:24:21 (4 years ago)
Author:
isaisstillalive
Message:
  • 3STATEモードをオフにした場合のテストを追加。
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/ruby/ruwin/test/ruwin/test_check_box.rb

    r28828 r28830  
    2020  end 
    2121   
    22   def test_indeterminate 
     22  def test_indeterminate_on 
    2323    window = HiddenWindow.new 
    2424    control = self.class::TARGET_CLASS.new window 
     
    2626    assert_equal true, control.indeterminate 
    2727  end 
     28   
     29  def test_indeterminate_off 
     30    window = HiddenWindow.new 
     31    control = self.class::TARGET_CLASS.new window 
     32    control.indeterminate = true 
     33    control.indeterminate = false 
     34    assert_equal false, control.indeterminate 
     35  end 
    2836end