Results 1 to 6 of 6
- 12-10-2012, 05:03 AM #1
Member
- Join Date
- Nov 2012
- Posts
- 4
- Rep Power
- 0
- 12-10-2012, 05:12 AM #2
Moderator
- Join Date
- Feb 2009
- Location
- New Zealand
- Posts
- 4,548
- Rep Power
- 11
Re: what is Java assertion framework?
And who is Google that all the swains ignore her? ;-)*what is Java assertion framework
Have a read of Programming With Assertions
- 12-10-2012, 05:14 AM #3
Member
- Join Date
- Nov 2012
- Posts
- 4
- Rep Power
- 0
Re: what is Java assertion framework?
i know what assertions are but whats the difference between assertions and the assertion network?
- 12-10-2012, 08:19 AM #4
Member
- Join Date
- Dec 2012
- Posts
- 1
- Rep Power
- 0
- 12-10-2012, 11:40 AM #5
Moderator
- Join Date
- Apr 2009
- Posts
- 10,481
- Rep Power
- 16
Re: what is Java assertion framework?
Um, there's no such thing (at least as a formal name) as the "Assertion Framework" (or network, depending on how you're feeling).
Java has assertions, as of 1.4ish...that's about it, apart from additional stuff in things like JUnit.
You might need to be more detailed.Please do not ask for code as refusal often offends.
- 12-10-2012, 06:19 PM #6
Re: what is Java assertion framework?
You also alternatingly refer to it as the Assertion Framework and Assertion Network. If you simply mean, how does java do assertions, then the answer is trivial.
the assert statement in java is simply a boolean evaluator that expects the conditional statement you supply it to be true, otherwise it throws an error. For example:
Java Code:assert 1 < 2; boolean running = true; assert running; assert !running; //error assert 1 > 2; //error
Similar Threads
-
New java gui framework
By Bushman in forum Reviews / AdvertisingReplies: 0Last Post: 05-01-2012, 07:24 AM -
assertion doubt
By jomypgeorge in forum New To JavaReplies: 3Last Post: 12-08-2010, 07:53 AM -
what is mean by java Framework?
By makpandian in forum New To JavaReplies: 4Last Post: 03-13-2009, 08:41 AM -
[SOLVED] about Assertion...
By newmember in forum New To JavaReplies: 4Last Post: 09-26-2008, 03:31 PM -
Java Plugin Framework (JPF) 1.0.2 and 1.5.1
By levent in forum Java SoftwareReplies: 0Last Post: 05-24-2007, 10:16 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks