Hi,
Using VerveineJ, the stub classes realted to unit tests (TestCase, TestSuit
and Test classes) are not imported
also their namesapce junit.framework
These classes are imported using inFamix.
junit.framework.TestCase class is particularly important in order to
automatically detect unit test classes: TestCase subclassHierarchy.
If this class is not available in the moose model then the only way to
automatically detect unit test classes is by detecting the classes that
their names are postfixed by 'Tests':
mooseModel allClasses select: [:c| '*Tests' match: c name]
such a way can provide us with wrong results!
Cheers,
Hani
P.S.: use-case JFreechart project:
http://sourceforge.net/projects/jfreechart/files/latest/download
which includes about 380 test classes (classes inherit from TestCase)
--
Status: New
Owner: tudor.gi...(a)gmail.com
Labels: Type-Defect Priority-Medium Component-Finder Milestone-4.6
New issue 765 by tudor.gi...(a)gmail.com: Meta Browser search list should
offer the full name of classes
http://code.google.com/p/moose-technology/issues/detail?id=765
Currently, we use the name when searching for classes in the MetaBrowser,
and when we get classes named the same but in different packages it gets
confusing. We should use the fullName
Status: New
Owner: ----
Labels: Type-Defect Priority-Medium Component-GlamorousToolkit
New issue 764 by tudor.gi...(a)gmail.com: The Glamorous Inspector should
allow editing the values of variables
http://code.google.com/p/moose-technology/issues/detail?id=764
In the regular inspector, you can just accept a new value in the preview
pane and the instance variable gets updated.
Glamorous Inspector should offer a similar support. Most likely, we will
start with a dialog for entering a new value. That is until we get the
ability to edit in place in the table.
Hi,
Just out of curiosity: Does any of you use the GTInspector?
For those that wonder what that is, here is a
demo:http://www.humane-assessment.com/blog/glamorous-inspector-for-smalltalk
This is available in any recent Moose image mapped as Explorer (CMD+I).
You can load it in a Pharo 1.3 image by:Gofer new squeaksource:
'glamoroust'; package: 'ConfigurationOfGlamoroust'; load.(Smalltalk
at: #ConfigurationOfGlamoroust) loadDefault.(Smalltalk at:
#GTInspector) registerToolsOn: Smalltalk tools.
Cheers,Doru
--
www.tudorgirba.com
"Every thing has its own flow"
Hi,
Just out of curiosity: Does any of you use the GTInspector?
For those that wonder what that is, here is a demo:
http://www.humane-assessment.com/blog/glamorous-inspector-for-smalltalk
This is available in any recent Moose image mapped as Explorer (CMD+I).
You can load it in a Pharo 1.3 image by:
Gofer new squeaksource: 'glamoroust'; package:
'ConfigurationOfGlamoroust'; load.(Smalltalk at:
#ConfigurationOfGlamoroust) loadDefault.(Smalltalk at: #GTInspector)
registerToolsOn: Smalltalk tools.
Cheers,
Doru
--
www.tudorgirba.com
"Every thing has its own flow"
Might one of you give me a code example that show a way of how show
different views of a same type of mondrian presentation, just changing a
value? This value must be gotten from a window and the mondrian
presentation must be in another window. For example a window with
presentation have a menu that call the another window, or something so. .
It is possible?
Julio.
*
*
--
View this message in context: http://forum.world.st/Glamour-Presentations-tp4215080p4215080.html
Sent from the Moose mailing list archive at Nabble.com.
Hi,
Can anyone recommend an dynamic instrumentation tool for Java?
I am interested in a solution that would work also on the server side (in particular, inside a JBoss server).
I found some links, but I do not know how good they are:
http://java-source.net/open-source/profilers
Cheers,
Doru
--
www.tudorgirba.com
"Reasonable is what we are accustomed with."
On 19/12/11 13:09, moose-dev-request(a)iam.unibe.ch wrote:
>
> ----------------------------------------------------------------------
>
>
> Message: 2
> Date: Mon, 19 Dec 2011 05:07:39 +0100
> From: Tudor Girba<tudor(a)tudorgirba.com>
> Subject: [Moose-dev] java (jboss) dynamic instrumentation?
> To: Moose-dev Moose Dev<moose-dev(a)iam.unibe.ch>
> Message-ID:<56F679FD-8623-4A68-BD18-B7C3B3C3D340(a)tudorgirba.com>
> Content-Type: text/plain; charset=us-ascii
>
> Hi,
>
> Can anyone recommend an dynamic instrumentation tool for Java?
>
> I am interested in a solution that would work also on the server side (in particular, inside a JBoss server).
>
> I found some links, but I do not know how good they are:
> http://java-source.net/open-source/profilers
>
> Cheers,
> Doru
>
> --
> www.tudorgirba.com
>
> "Reasonable is what we are accustomed with."
>
>
As far as I know, Javassist is what you need. I have used it for byte
code instrumentation and is relatively easy to learn and use, if I
remember correctly JBoss provides support for it. Take a look to:
http://www.jboss.org/javassist
Sergio