chrisdutz commented on issue #1602:
URL: https://github.com/apache/plc4x/issues/1602#issuecomment-2253150486

           ```
   ManualEipLogixDriverTest test = new 
ManualEipLogixDriverTest("logix://192.168.23.40");
           // This is the very limited number of types my controller supports.
           test.addTestCase("hurz_BOOL", new PlcBOOL(true));
           test.addTestCase("hurz_SINT", new PlcSINT(-42));
           test.addTestCase("hurz_INT", new PlcINT(-2424));
           test.addTestCase("hurz_DINT", new PlcDINT(-242442424));
           test.addTestCase("hurz_REAL", new PlcREAL(3.141593F));
           //test.addTestCase("hurz_UDT", new PlcStruct());
   
           long start = System.currentTimeMillis();
           test.run();
           long end = System.currentTimeMillis();
           System.out.printf("Finished in %d ms", end - start);
   
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to