Skip to content
Snippets Groups Projects
Commit 525993fb authored by W. Spencer Smith's avatar W. Spencer Smith
Browse files

Consolidated VnV Report into one document

parent 45885ba7
No related branches found
No related tags found
No related merge requests found
# Makefile
.PHONY: SRS
all: SRS MG MIS PS VnVP SVnVR UVnVR
all: SRS MG MIS PS VnVP VnVR
SRS:
cd SRS && make && cd ..
......@@ -18,14 +18,11 @@ PS:
VnVP:
cd VnVPlan && make && cd ../..
SVnVR:
cd VnVReport/SystVnVReport && make && cd ../..
VnVR:
cd VnVReport && make && cd ../..
UVnVR:
cd VnVReport/UnitVnVReport && make && cd ../..
clean: cleanSRS cleanMG cleanMIS cleanPS cleanSVnVP cleanUVnVP cleanSVnVR cleanUVnVR
clean: cleanSRS cleanMG cleanMIS cleanPS cleanVnVP cleanVnVR
cleanPS:
cd ProblemStatement && make clean && cd ..
......@@ -42,8 +39,5 @@ cleanMIS:
cleanVnVP:
cd VnVPlan && make clean && cd ..
cleanSVnVR:
cd VnVReport/SystVnVReport && make clean && cd ..
cleanUVnVR:
cd VnVReport/UnitVnVReport && make clean && cd ..
\ No newline at end of file
cleanVnVR:
cd VnVReport && make clean && cd ..
\ No newline at end of file
# Makefile
# From https://danielkaes.wordpress.com/2009/03/14/compiling-latex-documents-using-makefiles/
PROJECT=SystVnVReport
PROJECT=VnVReport
TEX=pdflatex
BIBTEX=bibtex
BUILDTEX=$(TEX) $(PROJECT).tex
......
# Test Report
The folders and files for this folder are as follows:
Describe ...
File deleted
# Makefile
# From https://danielkaes.wordpress.com/2009/03/14/compiling-latex-documents-using-makefiles/
PROJECT=UnitVnVReport
TEX=pdflatex
BIBTEX=bibtex
BUILDTEX=$(TEX) $(PROJECT).tex
all:
$(BUILDTEX)
# $(BIBTEX) $(PROJECT)
# $(BUILDTEX)
$(BUILDTEX)
clean-all:
rm -f *.dvi *.log *.bak *.aux *.bbl *.blg *.idx *.ps *.eps *.pdf *.toc *.out *~
clean:
rm -f *.log *.bak *.aux *.bbl *.blg *.idx *.toc *.out *.lof *.lot *~
\ No newline at end of file
# Test Report
The folders and files for this folder are as follows:
Describe ...
\documentclass[12pt, titlepage]{article}
\usepackage{booktabs}
\usepackage{tabularx}
\usepackage{hyperref}
\hypersetup{
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=red,
urlcolor=blue
}
\usepackage[round]{natbib}
\input{../../Comments}
\begin{document}
\title{Test Report: Project Title}
\author{Author Name}
\date{\today}
\maketitle
\pagenumbering{roman}
\section{Revision History}
\begin{tabularx}{\textwidth}{p{3cm}p{2cm}X}
\toprule {\bf Date} & {\bf Version} & {\bf Notes}\\
\midrule
Date 1 & 1.0 & Notes\\
Date 2 & 1.1 & Notes\\
\bottomrule
\end{tabularx}
~\newpage
\section{Symbols, Abbreviations and Acronyms}
\renewcommand{\arraystretch}{1.2}
\begin{tabular}{l l}
\toprule
\textbf{symbol} & \textbf{description}\\
\midrule
T & Test\\
\bottomrule
\end{tabular}\\
\wss{symbols, abbreviations or acronyms -- you can reference the SRS tables if needed}
\newpage
\tableofcontents
\listoftables %if appropriate
\listoffigures %if appropriate
\newpage
\pagenumbering{arabic}
This document ...
\section{Functional Requirements Evaluation}
\section{Nonfunctional Requirements Evaluation}
\subsection{Usability}
\subsection{Performance}
\subsection{etc.}
\section{Comparison to Existing Implementation}
This section will not be appropriate for every project.
\section{Unit Testing}
\section{Changes Due to Testing}
\section{Automated Testing}
\section{Trace to Requirements}
\section{Trace to Modules}
\section{Code Coverage Metrics}
\bibliographystyle{plainnat}
\bibliography{../../../ReferenceMaterial/References}
\end{document}
\ No newline at end of file
......@@ -12,7 +12,7 @@
}
\usepackage[round]{natbib}
\input{../../Comments}
\input{../Comments}
\begin{document}
......@@ -91,6 +91,6 @@ This section will not be appropriate for every project.
\bibliographystyle{plainnat}
\bibliography{SRS}
\bibliography{../../refs/References}
\end{document}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment