'LUA in software testing (automation tests) [closed]

  1. Does someone know to to attach Lua scripts in Jmeter or Junit?!
  2. Can someone recommend some tutorials or books with Lua software testing?!
  3. What do you think about Lua this is good scripting language and useful on market or this is garbage?!
lua


Solution 1:[1]

  1. You embed Lua in your Java application with a library like LuaJ and work with Lua states there. Your JUnit tests simply wrap Java code which uses Lua.
  2. LuaUnit and busted are well-documented frameworks for testing in Lua.
  3. Lua is used in very popular, big games, like WoW, Garry's Mod, Starbound, GTA V and many more. It's one of the first choices for embedded systems and slowly finds his way into web development. All this because it's a very tiny and fast language and the only reason it's not more popular is the lack of libraries and documentations.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Youka