Update readme with java instructions

Summary: Java instructions were missing from the readme. Add a quick note about how to run tests in java.

Reviewed By: lucasr

Differential Revision: D3648981

fbshipit-source-id: d9009a60bb1bb0837722f914981ef4e31f0adb68
This commit is contained in:
Emil Sjolander
2016-08-02 08:07:01 -07:00
committed by Facebook Github Bot 7
parent c7d02257e3
commit cdf18b9c2b

View File

@@ -10,4 +10,6 @@ See CSSLayout/CSSLayout.h for a look at the public API being exposed.
Building
--------
CSSLayout builds with buck (buckbuild.com). To build run `buck build //:CSSLayout` and run `buck test //:CSSLayout` to run the test suite.
CSSLayout builds with buck (buckbuild.com). To build run `buck build //:CSSLayout` and run `buck test //:CSSLayout` to run the test suite. For java the equivalent is `buck build //:CSSLayout_java` and `buck test //:CSSLayout_java`.
To run benchmarks run `buck run //:CSSLayout:benchmark`. There are currently no benchmarks for the java version.