I've had a rough time trying to print a bibliography in a document. I wrote a MWE and found even more issues.
\documentclass{article}
\usepackage[english]{babel}
\usepackage[backend=biber]{biblatex}
\usepackage[autostyle,english=american]{csquotes}
\addbibresource{tb.bib}
\begin{document}
I'd like to cite Masere and friends \cite{masere}, as well as Strogatz \cite{strogatz}.
\printbibliography
\end{document}
And the .bib file contains the following:
@article{masere,
author="J. Masere, D. A. Vasquez, B. F. Edwards, J. W. Wilder, and K. Showalter",
title="Nonaxisymmetric and Axisymmetric Convection in Propagating Reaction-Diffusion Fronts",
journal="J. Phys. Chem.",
volume="98",
number="26",
pages="6505--6508",
year="1994",
doi="http://dx.doi.org/10.1021/j100077a014",
}
@book{strogatz,
title={Nonlinear Dynamics and Chaos},
subtitle={With Applications to Physics, Biology, Chemistry, and Engineering},
author={S. H. Strogatz},
isbn={0-201-54344-3},
series={Studies in Nonlinearity},
year={1994},
publisher={Perseus Books},
}
After using pdflatex test.tex on the command prompt, I get the following:
No file test.bbl.
LaTeX Warning: Citation 'masere' on page 1 undefined on input line 9.
LaTeX Warning: Citation 'strogatz' on page 1 undefined on input line 9.
LaTeX Warning: Empty bibliography on input line 10.
[1{C:/ProgramData/MiKTeX/2.9/pdftex/config/pdftex.map}]
(C:\Users\me\Documents\Sandbox\test.aux)
LaTeX Warning: There were undefined references.
Package biblatex Warning: Please (re)run Biber on the file:
(biblatex) test
(biblatex) and rerun LaTeX afterwards.
After that, I used biber test.tex and got:
INFO - This is Biber 2.1
INFO - Logfile is 'test.tex.blg'
ERROR - Cannot find control file 'test.tex.bcf'! - did you pass the "backend=biber" option to BibLaTeX?
INFO - ERRORS: 1
I also found this last ERROR in my original file, and now I really don't know what to do. I just realized that this question is quite long, and I apologize for that. Any help will be appreciated.

biber test, notbiber test.tex. See also Question mark instead of citation number for a bit more background and Biblatex with Biber: Configuring my editor to avoid undefined citations on how to set up your editor. – moewe Oct 08 '15 at 15:24