未验证 提交 e094f01e 编写于 作者: J Jesse Glick
上级 5d7ea02e
package org.jvnet.hudson.test
import org.junit.Rule
import org.junit.Test
/**
* @author schristou@cloudbees.com
* Date: 9/17/13
* Time: 11:43 AM
* To change this template use File | Settings | File Templates.
*/
class SleepBuilderTest {
@Rule public JenkinsRule j = new JenkinsRule();
@Test
void testPerform() {
def project = j.createFreeStyleProject();
def builder = new SleepBuilder(30)
project.buildersList.add(builder);
j.configRoundtrip(project);
j.assertEqualDataBoundBeans(project.buildersList.get(SleepBuilder.class), builder);
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册