Skip to content

Commit

Permalink
Fixed NamingHelperTest.
Browse files Browse the repository at this point in the history
  • Loading branch information
Vookash committed Aug 22, 2016
1 parent 1ca3ecc commit e93b2f1
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions library/src/test/java/com/orm/helper/NamingHelperTest.java
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
package com.orm.helper;

import com.orm.app.ClientApp;
import com.orm.dsl.BuildConfig;
import com.orm.model.TestRecord;
import com.orm.util.ReflectionUtil;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.RobolectricGradleTestRunner;
import org.robolectric.annotation.Config;

import java.lang.reflect.Field;
import java.util.ArrayList;
import java.util.List;

import static junit.framework.Assert.assertEquals;
import static junit.framework.Assert.assertNull;
import static junit.framework.Assert.assertTrue;

import static com.orm.helper.NamingHelper.toColumnName;
import static com.orm.helper.NamingHelper.toTableName;
import static com.orm.helper.NamingHelper.toSQLNameDefault;
import static com.orm.helper.NamingHelper.*;
import static junit.framework.Assert.*;

@RunWith(RobolectricGradleTestRunner.class)
@Config(sdk = 18, constants = BuildConfig.class, application = ClientApp.class, packageName = "com.orm.model", manifest = Config.NONE)
public final class NamingHelperTest {

@Test(expected = IllegalAccessException.class)
Expand Down

0 comments on commit e93b2f1

Please sign in to comment.