# # Testing OpenWFE # # John Mettraux at openwfe.org # # Tue Jan 2 13:14:37 JST 2007 # require 'flowtestbase' require 'openwfe/def' class FlowTest18 < Test::Unit::TestCase include FlowTestBase #def setup #end #def teardown #end # # Test 0 # class TestDefinition0 < OpenWFE::ProcessDefinition def make _process_definition :name => "test0", :revision => "0" do p_toto end end end def test_0 dotest( TestDefinition0, "toto") end # # Test 1 # def test_1 dotest(\ """ """, "toto") end end