Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

40 lines
1.6KB

  1. %&tex
  2. \documentclass{standalone}
  3. \usepackage{siltex}
  4. \usepackage{tikz}
  5. \usetikzlibrary {arrows.meta,graphs,positioning,shapes.geometric}
  6. \tikzset{nodes={text height=.7em, text width=1.7cm, align=center,
  7. draw=black!50, thick, fill=white, font=\footnotesize},
  8. >={Stealth[round,sep]}, rounded corners, semithick}
  9. % Compliant PDF
  10. \usepackage[a-3u]{pdfx}
  11. \begin{document}
  12. \begin{tikzpicture}
  13. [on grid,y=3.0cm,x=3.0cm, auto,
  14. decision/.style={diamond, text width=4em,align=flush center, inner sep=1pt},
  15. block/.style={rectangle, minimum height=4em, text width=4em},
  16. cloud/.style ={draw=red, thick, ellipse,fill=red!20, minimum height=2em}]
  17. \node[block] (ft)[fill=lightgray] {Start:\\Failed Test};
  18. \node[decision] (pb)[below = 1 of ft] {Passed Before?};
  19. \node[decision] (ep)[below = 1 of pb] {Expected to pass?};
  20. \node[decision] (ef)[right = 1 of pb] {Expected to fail?};
  21. \node[block] (cont)[below = 1 of ef] {Continue, add next detail};
  22. \node[decision] (fu)[right = 1 of cont] {Will pass in future?};
  23. \node[block] (res)[below = 0.8 of cont] {Review Design};
  24. \begin{scope}[nodes={draw=none, fill=none, midway,text width={}}]
  25. \path[->] (ft) edge (pb)
  26. (pb) edge node {no} (ep)
  27. (ep) edge node {no} (cont)
  28. (pb) edge node {yes} (ef)
  29. (ef) edge node {yes} (cont)
  30. (fu) edge node {yes} (cont);
  31. \draw[->] (ep) |- node[near start] {yes} (res);
  32. \draw[->] (ef) -| node[near start] {no} (fu);
  33. \draw[->] (fu) |- node[near start] {no} (res);
  34. \end{scope}
  35. \end{tikzpicture}
  36. \end{document}