Google Code Exporter
Google Code Exporter
``` We need to implement the dumpdata management command. This may work as is, but we need to at least verify it. ``` Original issue reported on code.google.com by `[email protected]`...
``` What steps will reproduce the problem? 1. Try to evaluate "3**3**3" in the tutorial calculator parser in https://bitbucket.org/vlasovskikh/funcparserlib/src/16ed98522a11620d10f5c3a9d363 82e2e0931c59/doc/Tutorial.md?at=0.3.x 2. Try to evaluate "3**3**3" in Python. What is the...
``` Possible techniques: predictive parsing, memoization, parallel computations (only linear performance improvements though). ``` Original issue reported on code.google.com by `andrey.vlasovskikh` on 26 May 2011 at 11:03 - Blocked on:...
``` For example, instead of: from funcparserlib.lexer import make_tokenizer, Token from funcparserlib.parser import tok, many, fwd allow this: from funcparserlib import make_tokenizer, Token, tok, many, fwd ``` Original issue reported...
``` What is the expected output? What do you see instead? We have a mixed C/C++ codebase, with lots of C-style global functions. Currently, we have to use cgreen's link-time...
information on missing implementation is not actionable for developers without serious debugger time
``` What steps will reproduce the problem? 1. call a mocked function one too many times on a line with multiple mocked calls mock_object mock; mock_object other_mock; if (mock.getInstance().f() &&...
``` What is the expected output? What do you see instead? mock.verify() should throw a std::exception-derived exception, with what() being populated with information about exactly what missing. that way, it...
``` What steps will reproduce the problem? Stub a function on a mock_object N times with overloaded return values. Call the function on the mock_object's instance (getInstance()) N times. Stub...
``` Currently MockitoPP only supports mocking classes that have a single virtual table. Determining a classes layout pseudo-dynamically is nontrivial since there is no way at compile time to determine...
``` Steps to reproduce the problem: 1. Get to the main page of project 2. Try to understand what to do to start working with mockitopp On the main page...