Skip to content
This repository was archived by the owner on Jan 3, 2023. It is now read-only.

Commit

Permalink
Due to the rename, the next version will be 1.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeWharton committed Jul 11, 2014
1 parent 2c1c95a commit 6bb7e7a
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 18 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
Change Log
==========

Version 1.0.0 *(In Development)*
--------------------------------

Convert project from 'fest-android' to 'assertj-android'.

* New: Add-on modules for the support library, AppCompat, and GridLayout.




NOTE: The following change log is from the 'fest-android` releases which remain
a part of this repository history.

Version 1.0.8 *(2014-04-05)*
----------------------------

Expand Down
43 changes: 26 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,18 @@ import static org.assertj.android.api.Assertions.assertThat;



Add-On Modules
--------------

Modules are also provided for the add-on Android libraries. Add the dependency
(listed below) and use the following imports:

* support-v4: `import static org.assertj.android.support.v4.api.Assertions.assertThat;`
* appcompat-v7: `import static org.assertj.android.appcompat.v7.api.Assertions.assertThat;`
* gridlayout-v4: `import static org.assertj.android.gridlayout.v7.api.Assertions.assertThat;`



Extending
---------

Expand Down Expand Up @@ -129,26 +141,25 @@ For more information about writing custom assertions see the [official documenta
Download
--------

Download [the latest JAR][3] or grab via Maven:

```xml
<dependency>
<groupId>com.squareup.assertj</groupId>
<artifactId>assertj-android</artifactId>
<version>1.0.8</version>
</dependency>
Android module:
```groovy
androidTestCompile 'com.squareup.assertj:assertj-android:1.0.0'
```

or via Gradle:

Support-v4 module:
```groovy
androidTestCompile 'com.squareup.assertj:assertj-android:1.0.8'
androidTestCompile 'com.squareup.assertj:assertj-android-support-v4:1.0.0'
```

If you are not using Maven or Gradle you will also need to include the latest
[AssertJ][4] jar in your build.
AppCompat-v7 module:
```groovy
androidTestCompile 'com.squareup.assertj:assertj-android-appcompat-v7:1.0.0'
```

Compilation requires Android 4.1 or newer.
GridLayout-v7 module:
```groovy
androidTestCompile 'com.squareup.assertj:assertj-android-gridlayout-v7:1.0.0'
```



Expand All @@ -173,6 +184,4 @@ License


[1]: http://joel-costigliola.github.io/assertj/
[2]: http://joel-costigliola.github.io/assertj/assertj-core-custom-assertions.html
[3]: http://repository.sonatype.org/service/local/artifact/maven/redirect?r=central-proxy&g=com.squareup.assertf&a=assertj-android&v=LATEST
[4]: http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.assertj%22%20a%3A%22assertj-core%22
[2]: http://joel-costigliola.github.io/assertj/assertj-core-custom-assertions.html
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.squareup.assertj
VERSION_NAME=1.0.9-SNAPSHOT
VERSION_NAME=1.0.0-SNAPSHOT

POM_DESCRIPTION=A set of AssertJ assertion helpers geared toward testing Android.

Expand Down

0 comments on commit 6bb7e7a

Please sign in to comment.