%description: Test that check for unconnected gates can be turned off %file: test.ned simple Simple { gates: output out; input in; } network Test { submodules: a: Simple; b: Simple; connections allowunconnected: } %file: test.cc #include using namespace omnetpp; namespace @TESTNAME@ { class Simple : public cSimpleModule { public: Simple() : cSimpleModule(16384) { } virtual void activity() override; }; Define_Module(Simple); void Simple::activity() { } }; //namespace %contains-regex: stdout No more events