我在PHP代码中使用@since注释.我对它的使用有疑问.假设我有一个执行特定任务的函数,它已在1.0版本中实现.
所以我现在有@since 1.0.
现在我继续更改函数的名称,尽管里面的代码保持不变.它应该现在说@since 3.0(当前版本)还是@since 1.0?
这段代码:
Then %{I should see the following data in the "Feeds" data grid:
| Name |
| #{name} |}
Run Code Online (Sandbox Code Playgroud)
还有这个:
Then "I should see the following data in the \"Feeds\" data grid:
| Name |
| #{name} |"
Run Code Online (Sandbox Code Playgroud)
还有这个:
Then "I should see the following data in the \"Feeds\" data grid:\n| Name |\n| #{name} |"
Run Code Online (Sandbox Code Playgroud)
甚至这个:
Then <<EOS
I should see the following data in the "Feeds" data grid:
| Name |
| #{name} |
EOS
Run Code Online (Sandbox Code Playgroud)
给我:
Your block takes …Run Code Online (Sandbox Code Playgroud) 我需要一个词汇表,其中包含元素的图形示例以及它们(我希望)的标准化名称.是否有一些集中资源或每个框架/平台都有它自己的命名约定?