Skip to content

Commit

Permalink
updated README to reflect latest changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Rodja Trappe committed Oct 27, 2018
1 parent a201316 commit 2c3ebcb
Showing 1 changed file with 16 additions and 13 deletions.
29 changes: 16 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,27 @@
# Xamarin.Quicktest

Quicktest provides infrastructure to write acceptance and integration tests with NUnit and Xamarin.Forms. With a little care (mocking HTTP, etc) you can archive a very fast executing set of tests to ensure high level requirements are working as expected.
Quicktest provides infrastructure to write acceptance and integration tests with NUnit for Xamarin.Forms Apps. With a little care (mocking HTTP, etc) you can archive a very fast executing set of tests to ensure high level requirements are working as expected.

```csharp

[SetUp]
protected override void SetUp()
public class ToolingTests : QuickTest<App>
{
base.SetUp();
[SetUp]
protected override void SetUp()
{
base.SetUp();

LaunchApp();
}
Launch(new App());
}

[Test]
public void TestLoginGreetsUser()
{
Input("Username", "test user");
Input("Password", "mysecret");
Tap("Login");
ShouldSee("Welcome test user");
[Test]
public void LoginShouldGreetUser()
{
Input("Username", "test user");
Input("Password", "mysecret");
Tap("Login");
ShouldSee("Welcome test user");
}
}
```

Expand Down

0 comments on commit 2c3ebcb

Please sign in to comment.