我在Symfony中使用Behat。 Behat通过composer作为Symfony软件包安装。我的Connection con = null;
PreparedStatement stmt = null;
ResultSet rs = null;
try {
// your code
} catch (SQLException e) {
e.printStackTrace();
} finally {
try { if (rs != null) rs.close(); } catch (Exception e) {e.printStackTrace();}
try { if (stmt != null) stmt.close(); } catch (Exception e) {e.printStackTrace();}
try { if (conn != null) conn.close(); } catch (Exception e) {e.printStackTrace();}
}
中没有提到小黄瓜。
如何检查小黄瓜的版本?
答案 0 :(得分:3)
Gherkin被安装为Behat的依赖项。
您可以使用composer检查安装的版本:
composer show behat/gherkin