-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathtest-driven-dart.tex
47 lines (34 loc) · 1022 Bytes
/
test-driven-dart.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
\documentclass[11pt,twoside=semi,openright,numbers=noenddot]{scrartcl}
\input{tex/preamble.tex}
\title{Test Driven Dart}
\subtitle{\url{https://github.com/Yczar/test-driven-dart}}
\author{}
\date{Version: \tddversion}
\begin{document}
\baselineskip24pt
\maketitle
Welcome to Test Driven Dart! This repository is designed to guide Dart developers through the vast landscape of testing in Dart and Flutter, emphasizing a test-driven development (TDD) approach.
\tableofcontents
\newpage
\input{tex/ch1-getting-started.tex}
\newpage
\input{tex/ch2-unit-tests.tex}
\newpage
\input{tex/ch3-widget-tests.tex}
\newpage
\input{tex/ch4-integration-tests.tex}
\newpage
\input{tex/ch5-test-tips-and-best-practices.tex}
\newpage
\input{tex/ch6-special-topics.tex}
\newpage
\input{tex/ch7-external-resources-and-links.tex}
% Hello World!
% \begin{code}
% public class ClassName {
% public static void main(String[] args) {
% System.out.println(args);
% }
% }
% \end{code}
\end{document}