Read “Android アプリ設計パターン入門”

Androidアプリの設計パターンを読んだ。 自身の頭の整理、という感じですね。 個人的にはMVP/MVVMの話が一番よかったです。Activity/Fragmentやその他のもの。 Registoryレイヤはやっぱり色々なアーキテクチャでは安定していますが、PresenterやViewModelとかは今どうなのか、というところを把握するために、特に、 私自身、簡単な話だったり既存コードがMVP/MVVMとか、そこらへんの話はついていけるのですが、スクラッチで書けと言われるとちょっと参考を引っ張ってこないとサラでは書けないレベル。この書籍で、だいぶ頭の中の整理ができた気がします。 iOSもObjcから最近リリースされたし、mobile appのアーキテクチャは少し基盤ができた感じですかね。 https://www.objc.io/books/More

[Android][Java][JUnit]Some links for JUnit 5

Discussed JUnit 4 and JUnit 5, Parameterized Test and Dynamic Test styles, Android/Kotlin — KazuCocoa (@Kazu_cocoa) February 1, 2018 I discussed JUnit 5 with my team. I put some links and quotes in this post we discussed mainly then. Core principle https://github.com/junit-team/junit5/wiki/Core-Principles Parameterized tests https://github.com/junit-team/junit5/wiki/Core-Principles#parameterized-tests Dynamic Test http://www.baeldung.com/junit5-dynamic-tests The DynamicTests are executed differently than the…More

[Appium][Android]Scrolling to an element

Just for my memo When we scroll views using Appium, then we have two ways to achieve it. 1: Use UiScrollable The below method is implemented in Ruby client. This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an…More