Skip to content

Commit a4974c2

Browse files
author
Warren Seymour
committed
Fix spelling and grammatical errors on index page
1 parent 8e789fe commit a4974c2

File tree

1 file changed

+22
-23
lines changed

1 file changed

+22
-23
lines changed

_layouts/index.html

Lines changed: 22 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ <h4>Functional Testing</h4>
5151
<span class="badge pull-right">CodeGuy</span>
5252
<h4>Unit Testing</h4>
5353
<p>
54-
<b>PHPUnit</b>tests, with better stubs, and database interactions.&nbsp;Readable
54+
<b>PHPUnit</b> tests, with better stubs, and database interactions. Readable
5555
scenario-driven tests. CodeCoverage.
5656
</p>
5757
</div>
@@ -88,8 +88,8 @@ <h4>Unit Testing</h4>
8888

8989
<p class="alert page well alert-success">
9090
Codeception is kept as simple as possible for any kind of users.
91-
PHP developers, QAs, Managers can use Codeception. The only requirements are basic konwledge of PHP and theory of automated testing.
92-
It's configuration is kept short, all common issues are already solved.
91+
PHP developers, QAs, Managers can use Codeception. The only requirements are basic knowledge of PHP and theory of automated testing.
92+
Its configuration is kept short, all common issues are already solved.
9393
</p>
9494

9595
<h4>Features</h4>
@@ -118,10 +118,9 @@ <h4>Features</h4>
118118
<h3>Questions you wanted to ask</h3>
119119
<span class="badge badge-info pull-right">Q</span>
120120
<h4>Do I really need this?</h4>
121-
<p>If you develop a complex web applications with forms, links, and many
121+
<p>If you develop complex web applications with forms, links, and many
122122
pages (or maybe APIs), and you want to
123-
<b>check all forms and links in a minutes</b>, you need to use testing framework.
124-
Codeception just suites the best for that.
123+
<b>check all forms and links in minutes</b>, you need to use a testing framework.
125124
</p>
126125
<span class="badge badge-info pull-right">Q</span>
127126
<h4>Why should I use this instead of PHPUnit?</h4>
@@ -130,27 +129,27 @@ <h4>Why should I use this instead of PHPUnit?</h4>
130129
<b>Selenium</b>or other backends. Codeception is
131130
<b>PHPUnit on steroids</b>. Everything you need for testing is built-in and
132131
works just out of the box. No more pain in configuring Selenium, data cleanup, writing XPaths,
133-
and fixtures.&nbsp;
132+
and fixtures.
134133
</p>
135134
<span class="badge badge-info pull-right">Q</span>
136135

137136
<h4>No need for this. It looks just like Behat</h4>
138-
<p>Hold on! Even it uses the same style in test description and Mink as a
137+
<p>Hold on! Even though it uses the same style in test descriptions and Mink as a
139138
driver, Codeception is completely different. As you know,
140139
<b>Behat is not a testing framework</b>, but Codeception is. Codeception
141140
tests are written in PHP they are written much faster, especially if you
142-
use IDE . You can use
141+
use an IDE. You can use
143142
<b>variables and operators in your tests</b>. You can use
144-
<b>CSS and XPath</b>selectors in your tests. This features allows you to
143+
<b>CSS and XPath</b>selectors in your tests. These features allow you to
145144
build a solid test automation platform for testing your web application.
146-
Even though Codeception test are very readable for your developers, managers,
145+
Codeception tests are very readable for your developers, managers,
147146
and QA team.
148147
</p>
149148

150149
<span class="badge badge-info pull-right">Q</span>
151150
<h4>We are planning to use Selenium. Why Codeception?</h4>
152-
<p>Codeception works great with Selenium. But with Codeception you can write your tests in PHP. And
153-
the main reason is: <strong>Selenium tests are tightly bound to XPath locators</strong>.
151+
<p>Codeception works great with Selenium. But with Codeception you can write your tests in PHP.
152+
The main reason is: <strong>Selenium tests are tightly bound to XPath locators</strong>.
154153
If you ever change anything in layout tests will fall. Codeception locators
155154
are more stable. You can use names, labels, button names and CSS to match
156155
elements on page. It's much easier to support the Codeception test then
@@ -160,12 +159,12 @@ <h4>We are planning to use Selenium. Why Codeception?</h4>
160159

161160
<span class="badge badge-info pull-right">Q</span>
162161
<h4>Why do all tests starts with 'Guy'?</h4>
163-
<p>I'm not a sexist in any form, but we call the test worker a Guy. Think
164-
of it as a imaginable person that describers his actions in PHP DSL. I
165-
am new guy, he says. I want to test your application, he says. I click
166-
"Log In", fill fields, and I see "Hello" in page, he says. In our team
162+
<p>I'm not sexist in any form, but we call the test worker a Guy. Think
163+
of it as an imaginable person that describers his actions in PHP DSL. "I
164+
am new guy", he says. "I want to test your application", he says. "I click
165+
'Log In', fill fields, and I see 'Hello' in page", he says. In our team
167166
we just thought it is more natural to write tests from a person's perspective,
168-
then just commands.
167+
than just commands.
169168
</p>
170169

171170

@@ -210,16 +209,16 @@ <h3>Acceptance Test</h3>
210209
{% endhighlight %}
211210
</p>
212211
<p>This test can be executed inside Mozilla Firefox using Selenium Webdriver,
213-
or any browser. Nevertheless, you can execute this test without any browser
214-
but with PHP browser emulator based on CURL.
215-
in it.</p>
212+
or any browser. You can also execute this test without any browser
213+
by using a PHP browser emulator based on CURL.
214+
</p>
216215
<p>
217216
<a class="btn" href="/docs/04-AcceptanceTests"><span class="btn-label">Read more about Acceptance Tests &rarr;</span></a>
218217
</p>
219218

220219
<p>
221-
This test can be also executed as a functional test in one of popular PHP frameworks.
222-
Codeception has modules that support <strong>Symfony2</strong>, Zend Framework, Kohana.
220+
This test can be also executed as a functional test in one of the popular PHP frameworks.
221+
Codeception has modules that support <strong>Symfony2</strong>, Zend Framework and Kohana.
223222
</p>
224223

225224
<p>

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy