Skip to content
This repository was archived by the owner on Jun 27, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Temp commit.
  • Loading branch information
Evgenii Kanivets committed Feb 18, 2016
commit c285c6d886b423bd90dd00123d47570c620f76df
2 changes: 2 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,6 @@ dependencies {
compile 'com.google.dagger:dagger:2.0.1'
apt 'com.google.dagger:dagger-compiler:2.0.1'
provided 'org.glassfish:javax.annotation:10.0-b28'

testCompile 'junit:junit:4.12'
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package com.blogspot.e_kanivets.moneytracker.repo;

import org.junit.Test;

import static org.junit.Assert.*;

/**
* Created by evgenii_kanivets on 2/17/16.
*/
public class AccountRepoTest {

@Test
public void testGetTable() throws Exception {

}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
package com.blogspot.e_kanivets.moneytracker.repo;

import org.junit.Test;

import static org.junit.Assert.*;

/**
* Created by evgenii_kanivets on 2/17/16.
*/
public class AccountRepoTest {

@Test
public void testGetTable() throws Exception {

}

@Test
public void testCreate() throws Exception {

}

@Test
public void testUpdate() throws Exception {

}

@Test
public void testGetListFromCursor() throws Exception {

}

@Test
public void testRead() throws Exception {

}

@Test
public void testReadAll() throws Exception {

}

@Test
public void testDelete() throws Exception {

}

@Test
public void testReadWithCondition() throws Exception {

}
}
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.0'
classpath 'com.android.tools.build:gradle:1.5.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
}
}
Expand Down