Sha256: 375acd7199d460e4cb500ab21f71f5bd4a374360e26e47e0108a6caa8f5d4370

Contents?: true

Size: 977 Bytes

Versions: 4

Compression:

Stored size: 977 Bytes

Contents

# test harness

	
require 'test/unit/testcase'
require 'test/unit/assertions'
include Test::Unit::Assertions
include Test::Unit  
def rwdaddresses_all_tests 
	print "in rwdaddresses all tests\n"
  $testrwdaddressestestcase = TestSuite.new
	test_runrwdaddresses
end

def test_runrwdaddresses


	begin
  testasserts = 0
  print "Starting rwdaddresses tests!\n"
     runselectiontab
     assert_equal("selectiontab",@rwd_tab) ; testasserts += 1
    runrwdaddressesmenu10   
    assert_equal("viewaddressesconfiguration",@rwd_tab) ; testasserts += 1    
        loadrwdaddressesconfiguration
    assert_equal("rwdaddresses.cnf",@a_adconfigurationfilename) ; 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

4 entries across 4 versions & 2 rubygems

Version Path
bigtinker-0.93 code/superant.com.rwdaddresses/test_cases.rb
bigtinker-0.94 code/superant.com.rwdaddresses/test_cases.rb
rwdaddresses-1.03 code/superant.com.rwdaddresses/test_cases.rb
rwdaddresses-1.04 code/superant.com.rwdaddresses/test_cases.rb