I'm trying to make the code of the following post work: How to make a bib entry appear also in the main document but I get some thing that I don't expect:

I'm using the default TeXShop command: pdflatex --file-line-error --synctex=1.
I also tried to run bibtex, but I get the following message:
This is BibTeX, Version 0.99d (TeX Live 2012)
The top-level auxiliary file: test.aux
I found no \citation commands---while reading file test.aux
I found no \bibdata command---while reading file test.aux
I found no \bibstyle command---while reading file test.aux
(There were 3 error messages)
EDIT
This is the code:
\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@book{auth1:2000,
title = {A book},
author = {A. Thor},
date = {2000},
publisher = {Some Company},
location = {A City}
}
\end{filecontents}
\usepackage[backend=biber,]{biblatex}
\bibliography{\jobname.bib}
\begin{document}
\fullcite{auth1:2000}
\cite{auth1:2000}
\printbibliography
\end{document}
which is clearly wrong as I'm citing in the test. What's wrong?
