Python 2.6.x 支持注释吗
我指的是 JUnit 注释,例如 @test、@before、@after。
例如我可以写一个方法:
@Ignore("Not Ready to Run") @Test multiplication(): self.assertEqual('15', simpleMath.multiply(3, 5))
I am referring to JUnit annotations like @test, @before , @after.
e.g i can write a method:
@Ignore("Not Ready to Run") @Test multiplication(): self.assertEqual('15', simpleMath.multiply(3, 5))
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该语法在 python 2.6 中称为装饰器。我不确定它是否与注释相同。
That syntax is called decorator in python 2.6. I'm not sure whether it is the same thing as an innotation though.