Christoph Schmidt
19. Okt, 2009
When it comes to testing the GUI of Java applications, you’re typically faced with a tremendous amount of readily available testing tools for AWT and Swing, in all states of development, and all kinds of packages, be it standalone tools or some kind of plug-in to your favourite IDE. Now there’s more than just AWT/Swing. Once you start developing your first Eclipse plug-in, you’re bound to come across SWT, the GUI framework of Eclipse itself. Looking for tools capable of testing SWT-based applications is quite some task, the primary source for hints being some secluded mailing lists’ archives. The task gets even tougher when you’re setting more constraints: support for the Graphical Editing Framework (GEF) and robust Capture-Replay functionality, for example.
Weiterlesen »
Schlagworte: Eclipse •
GEF •
GUI •
Java •
QF-Test •
QFS •
RCP •
Regression •
SUT •
Swing •
SWT •
SWTBot •
Test
Christof Müller
24. Jun, 2009
The more complex your amf-speaking Flex app, the more painful and time consuming the act of testing and debugging your Rails controllers gets. Even if testing a specific controller method via the Flex gui only takes you a couple of clicks, it adds up. Plus, if you want to investigate how your controller reacts to unexpected, even invalid parameters, you’ll end up spending your day editing Flex code, recompiling, launching and clicking around in your Flex app – although you actually want to test your controllers. That’s bad. The issue gets even more severe if you consider the fact that Rails’ integrated functional testing environment doesn’t work with pure amf (see this thread for a very tentative try to get it working). Weiterlesen »
Schlagworte: amf •
Flex •
Rails
Simon Biemer
7. Mai, 2009
A common way to load code during run time in a Flex 3 (Air) application is using Modules. This special type of dynamically loaded SWF files allows the application to load separate parts that it requires only when it needs them. The user experiences shorter loading times due to smaller SWF file size and the developer can separate features into single modules that he can work on independently.
So far so good but unfortunately they cannot be run in a stand-alone way. Instead they must be loaded in an application. This makes it rather complicated when it comes to testing. If you have an extensive application with lots of different functionalities which are encapsulated into many different modules it can be very annoying to deploy the whole application just for testing only a small aspect. At this point the ‘Flexible Module Loader’ (FML) is going to be a very helpful tool.
Weiterlesen »
Schlagworte: Actionscript •
Air •
Flex
Falk Hartmann
6. Apr, 2009
Am 2. April hatten wir Eberhard Wolff, Regional Director der SpringSource GmbH und bekannt als die treibende Kraft hinter dem Spring Framework bei uns wie angekündigt in Dresden zu Besuch. Es war das 6. Treffen unserer Java User Group, welches fast genau ein Jahr nach dem ersten Treffen (3. April 2008) stattfand.
Weiterlesen »
Schlagworte: Java •
JUG Saxony •
OSGi •
Spring
Tobias Nebel
8. Dez, 2008
In vielen Bereichen der Softwareentwicklung kommt ein Entwickler früher oder später an den Punkt, an dem er bei Berechnungen zusätzliche Informationen zu Daten berücksichtigen muss. Diese zusätzlichen Informationen, auch Metadaten genannt, können das Ergebnis eines Verarbeitungsschrittes gravierend verfälschen: Wenn beispielsweise ein Messgerät sowohl Volt als auch Milli-Volt liefern kann, so muss diese Einheit bei Operationen zwischen zweier solcher Werte berücksichtigt werden.
Ein Mechanismus, der solch zusätzliche Informationen in einem System berücksichtigt, wird auch Metadatenverwaltung genannt. Bislang existieren verschiedene – mehr oder minder einfache – Möglichkeiten eine solche Verwaltung von Metadaten durchzuführen. Alle diese Ansätze haben jedoch entscheidende Schwachpunkte, die eine allgemeine Anwendbarkeit verbieten.
Weiterlesen »
Schlagworte: Bytecode-Engineering •
Instrumentierung •
Metadaten •
Metadaten-Verwaltung