Fixed unit tests.

This commit is contained in:
Matthias Koefferlein 2019-07-04 01:24:19 +02:00
parent 5e70f4fa03
commit 71777670de
2 changed files with 4 additions and 4 deletions

View File

@ -2103,7 +2103,7 @@ TEST(39_ParallelBJT3Transistors)
EXPECT_EQ (nl.to_string (),
"circuit '' (A=n1,B=n2,C=n3);\n"
" device '' d1 (C=n1,B=n2,E=n3) (AE=5,PE=25,AB=7,PB=27,AC=9,PC=29,NE=5);\n"
" device '' d1 (C=n1,B=n2,E=n3) (AE=5,PE=25,AB=3,PB=13,AC=4,PC=14,NE=5);\n"
"end;\n"
);
}
@ -2197,7 +2197,7 @@ TEST(40_ParallelBJT4Transistors)
EXPECT_EQ (nl.to_string (),
"circuit '' (A=n1,B=n2,C=n3,D=n4);\n"
" device '' d1 (C=n1,B=n2,E=n3,S=n4) (AE=5,PE=25,AB=7,PB=27,AC=9,PC=29,NE=5);\n"
" device '' d1 (C=n1,B=n2,E=n3,S=n4) (AE=5,PE=25,AB=3,PB=13,AC=4,PC=14,NE=5);\n"
"end;\n"
);
}

View File

@ -525,7 +525,7 @@ END
assert_equal(nl.to_s, <<END)
circuit '' (A=n1,B=n2,C=n3);
device '' d1 (C=n1,B=n3,E=n2) (AE=3,PE=25,AB=5,PB=27,AC=7,PC=29,NE=5);
device '' d1 (C=n1,B=n3,E=n2) (AE=3,PE=25,AB=2,PB=13,AC=3,PC=14,NE=5);
end;
END
@ -594,7 +594,7 @@ END
assert_equal(nl.to_s, <<END)
circuit '' (A=n1,B=n2,C=n3,D=n4);
device '' d1 (C=n1,B=n3,E=n2,S=n4) (AE=3,PE=25,AB=5,PB=27,AC=7,PC=29,NE=3);
device '' d1 (C=n1,B=n3,E=n2,S=n4) (AE=3,PE=25,AB=2,PB=13,AC=3,PC=14,NE=3);
end;
END