java - What kind of software testing is Selenium 2.0? -
i know opinion this. know selenium black box testing, unitng testing or intergration testing?
theoretically integrating testing.
i think pure unit test test verifies smaller unit can separate. in java smaller unit class. therefore theoretically unit test test deals 1 class.
in fact not correct , unit tests deal several classes , "modules", integration tests.
in theory integration tests deal whole application or module. module? 10 classes? 100 classes? web application? several enterprise applications working together?
usually once run our application container , test test called integration test. selenium does. depends on point of view. example typical configuration when web application deployed on tomcat + mysql on production , running jetty + hsqldb via maven during testing. maven phase runs application in jetty called "integration-tests". @ phase you's use selenium.
but qa "real" integration testing testing against real deployment tomcat , mysql.
Comments
Post a Comment