Docker is getting popular for Serverless application. In this article, I would like to show how to build a docker image for Bioinformatic tools like Bowtie. You can find what Bowtie is at http://bowtie-bio.sourceforge.net/index.shtml
Month: August 2016
Generating Android app screenshot with Screengrab
Screengrab is a part of Fastlane. It can help us to generate screenshot with different languages.
Before you use Screengrab, you need to write UI test with Espresso. Because Screengrab capture screenshot through Espresso.
Create simple application are text view and button with two locales English and Thai.
Testing elapsed time with Espresso IdlingResource
The original blog is Espresso: Elapsed time.
When do you need to write the test that needs to wait, you need to use IdlingResource
. Because Espresso does not wait for you.
Create simple elapsed time application, with one button and one text view. When to clicking the start button, the number will run until click stop button.
How to Testing your intent with Espresso
Android system uses intent for communication. Intent can contain information (component, action, category, data, extras and more). We can send the intent to other application and can get it from other application too.
In this blog we will create the simple application can take a photo and show photo in the image view.