Cómo actualizar la bibliografía en LaTeX con el editor TeXnicCenter

Cómo actualizar la bibliografía en LaTeX con el editor TeXnicCenter

Estoy escribiendo mi tesis. Tengo un código de archivo principal que se proporciona a continuación. Cuando ejecuto este archivo, produce un documento pdf. pero no abre el archivo .bib. El error dice:

I didn't find database entry for "test1"

testbibes el nombre de mi archivo .bib que contiene referencias y test1es el nombre de la cita. Estoy usando MiKTeX y TeXnicCenter como herramientas LaTeX. Espero haber dejado mi pregunta más clara. Probé TeXstudio pero el mismo problema. ¿Puede ser que me esté perdiendo algo?

aquí está el código para .bibfile

\usepackage{filecontents} \begin{filecontents}{testbib.bib}
 @Book{test1, author = {Goossens, Michel and Mittelbach, Frank and Samarin, Alexander}, title = {The LaTeX Companion}, publisher = {Addison-Wesley}, location = {Reading, Mass.}, year = {1994}, } \end{filecontents}

aquí está el código para mi archivo principal.

\documentclass[???]{???}
%\input{preamble}
\begin{document}

%\input{Sections/Title}  % etc. deleted other \input's

\tableofcontents
\listoffigures
\listoftables

%\input{Sections/Introduction} % deleted other \input's
\cite{6691866}    

\bibliographystyle{ieeetr}
\bibliography{References_ZAIN}

%\input{Sections/Thesis}
\end{document}

archivo de muestra para la introducción donde tengo que agregar una cita.

\chapter{\textbf{INTRODUCTION}}
\section{Background}

Channel Modeling is a vast concept. It can be used in many communication systems\cite{test1}. 

información relacionada