Skip to content

Instantly share code, notes, and snippets.

@ihopeudie
Created October 3, 2018 12:08
Show Gist options
  • Save ihopeudie/f602be13149d6f1258f8dbf15fa072d7 to your computer and use it in GitHub Desktop.
Save ihopeudie/f602be13149d6f1258f8dbf15fa072d7 to your computer and use it in GitHub Desktop.
package com.epamacademy.springcourse.task1.cinema;
import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
@ContextConfiguration("/spring.xml")
public class MovieTheaterTest {
@Autowired
private MovieTheater movieTheater;
@Test
public void shouldLoadContext() {
System.out.println(movieTheater.getAuditoriumSet());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment