# File gstreamer/tests/misc.rb, line 198
    def test(tc) 
        # Test the bin as a Gst::Element
        super(tc)
        # Test clock
        clock.test(tc) if clock
        # Test flags
        flags = {
            manager?     => Gst::Bin::FLAG_MANAGER,
            schedulable? => Gst::Bin::FLAG_SCHEDULABLE,
            prefers_cothreads? => Gst::Bin::FLAG_PREFER_COTHREADS,
            has_fixed_clock?   => Gst::Bin::FLAG_FIXED_CLOCK
        }
        test_flags(tc, flags)
    end