Package test.configuration

Source Code of test.configuration.ConfigurationListenerTest

package test.configuration;

import org.testng.Assert;
import org.testng.TestNG;
import org.testng.annotations.Test;

import test.SimpleBaseTest;

public class ConfigurationListenerTest extends SimpleBaseTest {

  @Test
  public void listenerShouldBeCalled() {
    TestNG tng = create(ConfigurationListenerSampleTest.class);
    Assert.assertFalse(ConfigurationListenerSampleTest.m_passed);
    tng.run();
    Assert.assertTrue(ConfigurationListenerSampleTest.m_passed);
  }
}
TOP

Related Classes of test.configuration.ConfigurationListenerTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.