Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/previousdeveloper/robolectric-gradle-testing
How to set up robolectric to work with gradle
https://github.com/previousdeveloper/robolectric-gradle-testing
Last synced: 8 days ago
JSON representation
How to set up robolectric to work with gradle
- Host: GitHub
- URL: https://github.com/previousdeveloper/robolectric-gradle-testing
- Owner: previousdeveloper
- Created: 2015-08-29T12:10:30.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-29T12:25:59.000Z (about 9 years ago)
- Last Synced: 2024-10-12T01:44:40.221Z (about 1 month ago)
- Language: Java
- Homepage: http://www.gokhankaradas.com/android-studio-robolectric-unit-test-yazmak/.html
- Size: 211 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Robolectric-Gradle-Testing
1. [English](#)
Robolectric, unit testleri oluşturmak için geliştirilmiş bir frameworktur.Robolectric testleri JVM üzerinde koşar, herhangi bir cihaz veya emülatör üzerinde çalışmaz.
JVM üzerinde çalıştığı için CI(continuous integration) için bize çok büyük kolaylık sağlar.Herhangi ek bir konfigürasyon yapmadan unit testlerimizi Jenkins gibi CI tool yardımıyla ile çalıştırabiliriz.
Robolectric bize view üzerinde elementlere,resource kaynaklarına erişmeyi sağlamıştır.
## Robolectric kurulumu ve konfigürasyon ayarları
Android studio oluşturduğumuz başlangıç projesinde dosya hiyerarşisinde **androidTest** ve **main** dosyaları gelmektedir.Robolectric ile unit testleri çalıştırabilmemiz için **test/java** adında bir dosya oluşturmak gerekmektedir.
![Build Variants](http://www.gokhankaradas.com/wp-content/uploads/2015/08/studio.jpg)
Ardından Android Studio solunda bulunan Build Variants kısmından Test Artifactini **Unit Test** olarak seçelim. Yukarıda görebilirsiniz.
## Gradle Plugin Gerekli Bağımlılıkların Yüklenmesi
```java
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.2.0'
// Junit ve roboelectric tanımlanması
//Test Framework
testCompile 'junit:junit:4.12'
testCompile "org.robolectric:robolectric:3.0"
}
```Örnek bir test yazımı ve çalıştırılması.
Activity içinde yaptığımız basit işlemler.
```java
public class MainActivity extends Activity {private Button mBtn;
private TextView mTextView;
private ListView mListView;
private List stringList;
private ArrayAdapter listAdapter;@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mBtn = (Button) findViewById(R.id.test_button);
mTextView = (TextView) findViewById(R.id.textView);
mListView = (ListView) findViewById(R.id.root_listview);mBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {mTextView.setText("changed");
}
});
adapter();
}private void adapter() {
stringList = new ArrayList<>();
for (int i = 1; i < 21; i++) {
stringList.add(String.valueOf(i));
}listAdapter = new ArrayAdapter(this, android.R.layout.simple_list_item_1, stringList);
mListView.setAdapter(listAdapter);
}
```Layout tarafında oluşturduğumuz bileşenler
```java
```
### Test Kodlarının yazılması
```java
@RunWith(RobolectricGradleTestRunner.class)
@Config(constants = BuildConfig.class)
public class SampleTest {private Button test_button;
private TextView textView;
private ListView mListView;
private MainActivity activity;@Before
public void setUp() throws Exception {
activity = Robolectric.setupActivity(MainActivity.class);
test_button = (Button) activity.findViewById(R.id.test_button);
textView = (TextView) activity.findViewById(R.id.textView);
mListView = (ListView) activity.findViewById(R.id.root_listview);}
@Test
public void shouldMainActivityNotBeNull() throws Exception {assertTrue(Robolectric.buildActivity(MainActivity.class).create().get() != null);
String hello = new MainActivity().getResources().getString(R.string.hello_world);
Assert.assertEquals(hello, "Hello world!");
}@Test
public void shouldTextViewNameChanged() throws Exception {test_button.performClick();
Assert.assertEquals(textView.getText().toString(), "changed");
}@Test
public void shouldRootLayoutLoaded() {Assert.assertEquals(R.id.root_layout, shadowOf(activity).getContentView().getId());
}@Test
public void shouldApplicationIdBeCorrect() {
String appId = BuildConfig.APPLICATION_ID;
Assert.assertEquals(appId, "testcase.unittestwithroboelectric");
}@Test
public void shouldListViewItemSizeGreaterThanO() {
int listViewItemSize = mListView.getCount();
Assert.assertTrue(listViewItemSize > 0);
}@Test
public void shouldButtonNameCorrect(){
Assert.assertEquals(test_button.getText().toString(),"New Button");
}
}
```![Sonuclarin Görüntülenmesi](http://www.gokhankaradas.com/wp-content/uploads/2015/08/test_results-1024x317.jpg)