[Tex/LaTex] LaTeX Warning: Empty `thebibliography’ environment on input line 3

bibliographiesbibtexwarnings

I have a problem with my bibliography. Though my bib file is not empty, I get the message that it is. Also my .bbl file is empty.

This is my document:

  \documentclass[10pt, a4paper]{Thesis}

  \begin{document}

  \cite{Author2010}

  \bibliographystyle{unsrt} 
  \bibliography{testbib.bib} 

  \end{document}

And this is my bib file:

 @BOOK{Author2010,
          author = {Author, This},
           pages = {301},
       publisher = {Springer},
           title = {{Book}},
            year = {2010}
       }

Best Answer

The correct syntax is \bibliography{testbib} (without the .bib ending).