PHP Objects, Patterns and Practice (3rd edition)
CHAPTER 18 ■ TESTING WITH PHPUNIT Selenium RC requires a more manual approach. Once you’ve downloaded the package, you should fi ...
CHAPTER 18 ■ TESTING WITH PHPUNIT Figure 18–1. The Selenium IDE control panel As you can see, I have used the base URL http://lo ...
CHAPTER 18 ■ TESTING WITH PHPUNIT Figure 18–2. Verifying Text on a web page Meanwhile, Selenium has recorded both of my visits t ...
CHAPTER 18 ■ TESTING WITH PHPUNIT Notice that each command is divided into three parts: command, target, and value. These subdiv ...
CHAPTER 18 ■ TESTING WITH PHPUNIT $this->assertTrue($this->isTextPresent("no name provided")); } catch (PHPUnit_Framework_ ...
CHAPTER 18 ■ TESTING WITH PHPUNIT Tests add a number of costs to your development. As you build safety into the project, for exa ...
CHAPTER 18 ■ TESTING WITH PHPUNIT $face = new DBFace("sqlite::memory:"); $face->query("create table user ( id INTEGER PRIMARY ...
CHAPTER 18 ■ TESTING WITH PHPUNIT ...
C H A P T E R 19 ■ ■ ■ Automated Build with Phing If version control is one side of the coin, then automated build is the other. ...
■Chapter 19: Automated Build with Phing .......................................................... for shell commands. This make ...
CHAPTER 19 ■ AUTOMATED BUILD WITH PHING As you can see, Phing is lost without instructions. By default, it will look for a file ...
CHAPTER 19 ■ AUTOMATED BUILD WITH PHING Targets Targets are similar, in some senses, to functions. A target is a set of actions ...
CHAPTER 19 ■ AUTOMATED BUILD WITH PHING $ phing runsecond Buildfile: /home/bob/working/megaquiz/build.xml megaquiz > runfirst ...
CHAPTER 19 ■ AUTOMATED BUILD WITH PHING Properties Phing allows you to set such values using the property element. Properties ar ...
CHAPTER 19 ■ AUTOMATED BUILD WITH PHING property is not set, the target will exit silently. Here, I comment out the dbpass prope ...
CHAPTER 19 ■ AUTOMATED BUILD WITH PHING Now that I have wrapped up the target element, table 19–2 shows a summary of its attribu ...
CHAPTER 19 ■ AUTOMATED BUILD WITH PHING If I had not set the override element in the second property element, the original value ...
CHAPTER 19 ■ AUTOMATED BUILD WITH PHING megaquiz > main: ... [echo] pass: whooshpoppow BUILD FINISHED Total time: 0.2852 seco ...
CHAPTER 19 ■ AUTOMATED BUILD WITH PHING FileSet Let’s say that you need to represent a directory in your build file, a common si ...
CHAPTER 19 ■ AUTOMATED BUILD WITH PHING Table 19–3. Some Attributes of the fileset Element Attribute Required Description Id No ...
«
17
18
19
20
21
22
23
24
25
26
»
Free download pdf