mirror of
https://github.com/pocoproject/poco.git
synced 2025-11-06 21:56:23 +01:00
Poco::Var operator== throws exception #769
This commit is contained in:
@@ -2465,6 +2465,11 @@ void VarTest::testEmpty()
|
||||
assert (da == da);
|
||||
assert (!(da != da));
|
||||
|
||||
assert (da != Var(1));
|
||||
assert (!(da == Var(1)));
|
||||
assert (Var(1) != da);
|
||||
assert (!(Var(1) == da));
|
||||
|
||||
da = "123";
|
||||
int i = da.convert<int>();
|
||||
assert (123 == i);
|
||||
|
||||
Reference in New Issue
Block a user