Skip to content

Instantly share code, notes, and snippets.

View eakurnikov's full-sized avatar

Egor Kurnikov eakurnikov

View GitHub Profile
@osipxd
osipxd / 1. Автоматизации и инфраструктура вместо рутины и бойлерплейта.md
Last active October 20, 2023 13:04
Автоматизации и инфраструктура вместо рутины и бойлерплейта

Автоматизации и инфраструктура вместо рутины и бойлерплейта

Материалы к докладу на митап red_mad_robot 15.12.2022

YouTube | Презентация

1. Качество кода

@osipxd
osipxd / .editorconfig
Last active March 10, 2024 22:35
EditorConfig for Android projects with mapping to IntelliJ IDEA's config
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
max_line_length = 120
package com.example
import android.app.Instrumentation
import android.os.Bundle
import android.util.Log
import androidx.test.internal.runner.listener.InstrumentationResultPrinter
import androidx.test.platform.app.InstrumentationRegistry
import org.junit.runner.Description
import org.junit.runner.notification.RunListener
@dbachelder
dbachelder / NoFinishActivityTestRule.java
Created April 29, 2015 23:44
Android test runner that doesn't finish the activity under test
package android.support.test.rule;
import android.app.Activity;
import android.content.Intent;
import android.util.Log;
/**
* this is a rule that does not finish the activity under test at the end of the test.
*
* useful for debugging and development. use in the same way as ActivityTestRule.