Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
This repository was archived by the owner on Feb 26, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,23 @@ public void setUp() {

@Test
public void activitySubclassInManifestCompiles() {
assertCompilationSuccessful(compileFiles(SomeActivity.class, SomeImplementation.class, SingletonBean.class, SomeGenericBean.class, SomeGenericBeanExt.class));
assertCompilationSuccessful(compileFiles(SomeActivity.class, SomeImplementation.class, SomeGenericBean.class, SomeGenericBeanExt.class, SingletonBean.class, SomeBeanWithEmptyConstructor.class,
SomeBeanWithContextParamConstructor.class));
}

@Test
public void eBeanOnInterfaceDoesNotCompile() {
assertCompilationError(compileFiles(InterfaceWithEBean.class));
}

@Test
public void eBeanWithContextAndNoParamsConstructorsCompile() {
assertCompilationSuccessful(compileFiles(SomeBeanWithEmptyConstructor.class, SomeBeanWithContextParamConstructor.class));
}

@Test
public void eBeanWithNonContextOnlyConstructorsDoesNotCompile() {
assertCompilationError(compileFiles(SomeBeanWithNonContextConstructors.class, SomeBeanWithContextAndNoParamsConstructors.class));
}

}
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/**
* Copyright (C) 2010-2016 eBusiness Information, Excilys Group
* Copyright (C) 2016-2019 the AndroidAnnotations project
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
Expand Down Expand Up @@ -30,9 +31,18 @@ public class SomeActivity extends Activity {

@Bean
@NonConfigurationInstance
SingletonBean maintainedSingeltonDependency;
SingletonBean maintainedSingletonDependency;

@Bean
SomeGenericBean<Object> objectSomeGenericBean;

@Bean
SomeGenericBeanExt someGenericBeanExt;

@Bean
SomeBeanWithEmptyConstructor beanWithEmptyConstructor;

@Bean
SomeBeanWithContextParamConstructor beanWithContextParamConstructor;

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/**
* Copyright (C) 2016-2019 the AndroidAnnotations project
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed To in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package org.androidannotations.ebean;

import org.androidannotations.annotations.EBean;

import android.content.Context;

@EBean
public class SomeBeanWithContextAndNoParamsConstructors {

public SomeBeanWithContextAndNoParamsConstructors() {

}

public SomeBeanWithContextAndNoParamsConstructors(Context context) {

}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/**
* Copyright (C) 2016-2019 the AndroidAnnotations project
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed To in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package org.androidannotations.ebean;

import org.androidannotations.annotations.EBean;

import android.content.Context;

@EBean
public class SomeBeanWithContextParamConstructor {

public SomeBeanWithContextParamConstructor(Context context) {

}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/**
* Copyright (C) 2016-2019 the AndroidAnnotations project
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed To in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package org.androidannotations.ebean;

import org.androidannotations.annotations.EBean;

@EBean
public class SomeBeanWithEmptyConstructor {

public SomeBeanWithEmptyConstructor() {

}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
/**
* Copyright (C) 2016-2019 the AndroidAnnotations project
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed To in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package org.androidannotations.ebean;

import org.androidannotations.annotations.EBean;

import android.content.Context;

@EBean
public class SomeBeanWithNonContextConstructors {

public SomeBeanWithNonContextConstructors(String someParam) {

}

public SomeBeanWithNonContextConstructors(Context context, int someParam) {

}

public SomeBeanWithNonContextConstructors(String someParam, Context context) {

}

}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.