Skip to content

Instantly share code, notes, and snippets.

View php-coder's full-sized avatar

Slava Semushin php-coder

View GitHub Profile
@php-coder
php-coder / InjectExample.java
Created October 4, 2011 17:17
Example of @Inject usage
import javax.inject.Inject;
@Inject
private DataSource dataSource;
@php-coder
php-coder / CheckNotNullExample.java
Created September 24, 2011 14:50
Guava Preconditions class usage example
void setObject(Integer number) {
this.number = checkNotNull(number);
}
@php-coder
php-coder / AccessLevelExample.java
Created September 24, 2011 14:37
Lombok usage example
@Getter(AccessLevel.PROTECTED)
private int b;
@php-coder
php-coder / AssertThatExample.java
Created September 24, 2011 14:28
Example of fest-asserts usage
import static org.fest.assertions.Assertions.assertThat;
@Test
public void booleanAssertions() {
assertThat(true).isTrue();
assertThat(false).isFalse();
}
@Test
public void objectsAssertions() {