Sha256: cc70c47933f20d784ec67294c9afeae620675473718d0aeac6da1108c2488b94

Contents?: true

Size: 904 Bytes

Versions: 7

Compression:

Stored size: 904 Bytes

Contents

# test harness

	
require 'test/unit/testcase'
require 'test/unit/assertions'
  
def rwdshell_all_tests 
	print "in rwdshell all tests\n"
  $testrwdshelltestcase = TestSuite.new
	test_runrwdshell
end

def test_runrwdshell


	begin
  testasserts = 0
  print "Starting rwdshell tests!\n"
     runselectiontab
     assert_equal("selectiontab",@rwd_tab) ; testasserts += 1
    runrwdschedulemenu10   
    assert_equal("viewrwdscheduleconfiguration",@rwd_tab) ; testasserts += 1    
        loadrwdscheduleconfiguration
    assert_equal("rwdschedule.cnf",@a_schconfigurationfilename) ; testasserts += 1    
     
 $stderr.print "tests completed succesfully!\n"
 $stderr.print testasserts, " asserts performed\n"

	rescue  NotImplementedError, Exception
		$stderr.print $!

	end
  
end



def teststobedown
 runtinkerhelpabout
          assert_equal("rwdtinkerhelpwindow",@rwd_tab)  ; testasserts += 1
end




Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
bigtinker-0.96 code/superant.com.rwdshell/test_cases.rb
bigtinker-0.98 code/superant.com.rwdshell/test_cases.rb
bigtinker-0.97 code/superant.com.rwdshell/test_cases.rb
rwdruby-1.08 code/superant.com.rwdshell/test_cases.rb
rwdruby-1.06 code/superant.com.rwdshell/test_cases.rb
rwdruby-1.05 code/superant.com.rwdshell/test_cases.rb
rwdruby-1.07 code/superant.com.rwdshell/test_cases.rb